[otrs] Customers without mail

1,264 views
Skip to first unread message

Armando Irazabal

unread,
Jan 4, 2011, 9:37:16 AM1/4/11
to ot...@otrs.org

Hi everybody,

                I need to setup (from agent interface ) a new customer who hasn´t any email account.

 

Is it possible?

 

Regards

 

 

 

Jan Rüssel

unread,
Jan 4, 2011, 10:01:45 AM1/4/11
to User questions and discussions about OTRS.
I am using telephone tickets along with disabling the check for email adresses.
You can deactivite the email check in telephone ticket by adding:
$Self->{CheckEmailAddresses} = 0;
to the Config.pm

Then you can type in any name for the reporter of the ticket.
Regards,
Jan

---------------------------------------------------------------------
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs

Gerald Young

unread,
Jan 4, 2011, 11:07:02 PM1/4/11
to User questions and discussions about OTRS.
Alternatively, I've been suggesting using (customerphonenumber)@mailinator.com as an email address.
See http://mailinator.com/ for more info.

Armando Irazabal

unread,
Jan 7, 2011, 7:26:37 AM1/7/11
to ot...@otrs.org
Hi Jan,

I tried addind the following line
$Self->{CheckEmailAddresses} = 0

And email is still mandatory but password is optional.

Any idea?


Message: 5
Date: Tue, 4 Jan 2011 16:01:45 +0100
From: Jan R?ssel <janru...@gmail.com>
Subject: Re: [otrs] Customers without mail
To: "User questions and discussions about OTRS." <ot...@otrs.org>
Message-ID:
<AANLkTimfyw8y2ZA_FC+M778zoAFfdafUKCjqQPzm38z=@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

I am using telephone tickets along with disabling the check for email
adresses.
You can deactivite the email check in telephone ticket by adding:
$Self->{CheckEmailAddresses} = 0;
to the Config.pm

Then you can type in any name for the reporter of the ticket.
Regards,
Jan

On Tue, Jan 4, 2011 at 3:37 PM, Armando Irazabal
<arma...@moxiongroup.com>wrote:

> Hi everybody,
>
> I need to setup (from agent interface ) a new customer who

> hasn?t any email account.

Jan Rüssel

unread,
Jan 7, 2011, 8:01:07 AM1/7/11
to User questions and discussions about OTRS.
Are you using Phone tickets?
Or are you talking about the customer web interface potentially?
If you are using phone tickets this should to the job.
I am not sure since I am also new to OTRS, but maybe it is necessary to do an apache restart.

Shawn Beasley

unread,
Jan 7, 2011, 8:14:47 AM1/7/11
to User questions and discussions about OTRS.
Hello,


On Jan 4, 2011, at 15:37 , Armando Irazabal wrote:

> Hi everybody,
> I need to setup (from agent interface ) a new customer who hasn´t any email account.

Which version of OTRS?

///shawn

Steve Durbin

unread,
Jan 7, 2011, 9:35:47 AM1/7/11
to ot...@otrs.org
Armando,

The solution we are using is to create a mail "sink". Using Postfix (or any other mail client) it's fairly easy to set email addresses that just throw the mail away.

Here, if you send an email to dummy-(anything)@help.bridgend.gov.uk it just gets thrown away. This allows us to have *unique* emails for use as OTRS customer IDs without the user actually having to have email.

We did this by configuring Postfix with a virtual-regexp as:

/^dummy-(.*)@help.bridgend.gov.uk/ devnull@localhost

And then in aliases:

devnull: |/usr/local/bin/devnull

The script then just consists of "cat >/dev/null". We only used a script because it's cleaner in the aliases files. There are simpler ways of configuring mail clients, but we found this the cleanest for us as the OTRS box already had Postfix on it.

Hope this helps,
--
Steve Durbin
Group Manager: Applications Delivery/Cyfarwyddwr Grŵp: Trosglwyddo Rhaglenni
Bridgend County Borough Council/Cyngor Bwrdeistref Sirol Pen-y-Bont ar Ogwr
Tel/Rhif ffon: 01656 642113
Mob/ffon symudol: 07976 271559
Fax/Ffacs: 01656 642125
Web/We: http://www.bridgend.gov.uk

E-mail may be automatically logged, monitored and/or recorded for legal purposes.
Please do not print this email unless absolutely necessary.
E-bost yn cael ei logio, ei monitro a/neu ei chofnodi yn awtomatig am resymau cyfreithiol
Peidiwch ag argraffu’r neges e-bost hon oni bai fod hynny’n gwbl angenrheidiol.

________________________________________________________________________
This e-mail and any attachments transmitted with it represents the
views of the individual(s) who sent them and should not be regarded
as the official view of Bridgend County Borough Council. The contents
are confidential and intended solely for the use of the addressee. If
you have received it in error, please inform the system administrator
on (+44) 01656 642111.

This e-mail and any attachments have been scanned with 'MessageLabs SkyScan' - http://www.messagelabs.com/

________________________________________________________________________
Mae'r e-bost hwn ac unrhyw atodiadau a drosglwyddir gydag ef yn cynrychioli safbwyntiau'r unigolyn a'i anfonodd (unigolion a'u hanfonodd) ac ni ddylid eu hystyried fel safbwynt swyddogol Cyngor Bwrdeistref Sirol Pen-y-bont ar Ogwr. Mae'r cynnwys yn gyfrinachol ac wedi'i fwriadu ar gyfer y sawl y'i cyfeiriwyd ato yn unig. Os ydych wedi ei dderbyn mewn camgymeriad, rhowch wybod i weinyddwr y system ar (+44) 01656 642111.

Mae'r e-bost hwn ac unrhyw atodiadau wedi cael eu sganio gyda 'MessageLabs SkyScan' - http://www.messagelabs.com/
________________________________________________________________________

Shawn Beasley

unread,
Jan 7, 2011, 10:55:47 AM1/7/11
to User questions and discussions about OTRS.
Hello Steve,

On Jan 7, 2011, at 15:35 , Steve Durbin wrote:

> Armando,
>
> The solution we are using is to create a mail "sink". Using Postfix (or any other mail client) it's fairly easy to set email addresses that just throw the mail away.
>
> Here, if you send an email to dummy-(anything)@help.bridgend.gov.uk it just gets thrown away. This allows us to have *unique* emails for use as OTRS customer IDs without the user actually having to have email.
>
> We did this by configuring Postfix with a virtual-regexp as:
>
> /^dummy-(.*)@help.bridgend.gov.uk/ devnull@localhost
>
> And then in aliases:
>
> devnull: |/usr/local/bin/devnull
>
> The script then just consists of "cat >/dev/null". We only used a script because it's cleaner in the aliases files. There are simpler ways of configuring mail clients, but we found this the cleanest for us as the OTRS box already had Postfix on it.

...

This is a very interesting concept, and a good setup in my humble opinion. How would you feel about documenting this as a howto on the wiki http://wiki.otrs.org/index.php?title=English_Area ?

///shawn

Gerald Young

unread,
Jan 7, 2011, 11:01:17 AM1/7/11
to User questions and discussions about OTRS.
my mailinator post does essentially the same thing. :)

Shawn Beasley

unread,
Jan 7, 2011, 12:15:06 PM1/7/11
to User questions and discussions about OTRS.
Hi Gerald,

On Jan 7, 2011, at 17:01 , Gerald Young wrote:

> my mailinator post does essentially the same thing. :)

Very true! However, I feel it would be hard to convince people to send their (sometimes) sensitive data to a third party service. Who knows what really happens with this :)! But, you are very welcome to do a HowTo as well ;)!

Matus UHLAR - fantomas

unread,
Jan 12, 2011, 7:54:16 AM1/12/11
to ot...@otrs.org
On 07.01.11 14:35, Steve Durbin wrote:
> The solution we are using is to create a mail "sink". Using Postfix (or
> any other mail client) it's fairly easy to set email addresses that just
> throw the mail away.
>
> Here, if you send an email to dummy-(anything)@help.bridgend.gov.uk it
> just gets thrown away. This allows us to have *unique* emails for use as
> OTRS customer IDs without the user actually having to have email.
>
> We did this by configuring Postfix with a virtual-regexp as:
>
> /^dummy-(.*)@help.bridgend.gov.uk/ devnull@localhost
>
> And then in aliases:
>
> devnull: |/usr/local/bin/devnull

wouldn't be

devnull: /dev/null

just enough?

> The script then just consists of "cat >/dev/null". We only used a script
> because it's cleaner in the aliases files. There are simpler ways of
> configuring mail clients, but we found this the cleanest for us as the
> OTRS box already had Postfix on it.

I wonder if it wouldn't be better to add support for customers with no
e-mail addresses...

--
Matus UHLAR - fantomas, uh...@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
"One World. One Web. One Program." - Microsoft promotional advertisement
"Ein Volk, ein Reich, ein Fuhrer!" - Adolf Hitler

Steve Durbin

unread,
Jan 14, 2011, 5:11:54 AM1/14/11
to ot...@otrs.org
On 12.01.11 13:54 Matus UHLAR wrote:
>>On 07.01.11 14:35, Steve Durbin wrote:
>> And then in aliases:
>>
>> devnull: |/usr/local/bin/devnull
>wouldn't be
>devnull: /dev/null
>just enough?

Yes, but by using a script you get the flexibility to do other things such as monitoring the traffic. I prefer having hooks like this, and since I'm writing for people without much experience here it provides them with opportunities they may not have though of.


--
Steve Durbin
Group Manager: Applications Delivery/Cyfarwyddwr Grŵp: Trosglwyddo Rhaglenni
Bridgend County Borough Council/Cyngor Bwrdeistref Sirol Pen-y-Bont ar Ogwr
Tel/Rhif ffon: 01656 642113
Mob/ffon symudol: 07976 271559
Fax/Ffacs: 01656 642125
Web/We: http://www.bridgend.gov.uk


E-mail may be automatically logged, monitored and/or recorded for legal purposes.
Please do not print this email unless absolutely necessary.
E-bost yn cael ei logio, ei monitro a/neu ei chofnodi yn awtomatig am resymau cyfreithiol
Peidiwch ag argraffu’r neges e-bost hon oni bai fod hynny’n gwbl angenrheidiol.

________________________________________________________________________
This e-mail and any attachments transmitted with it represents the
views of the individual(s) who sent them and should not be regarded
as the official view of Bridgend County Borough Council. The contents
are confidential and intended solely for the use of the addressee. If
you have received it in error, please inform the system administrator
on (+44) 01656 642111.

This e-mail and any attachments have been scanned with 'MessageLabs SkyScan' - http://www.messagelabs.com/

________________________________________________________________________
Mae'r e-bost hwn ac unrhyw atodiadau a drosglwyddir gydag ef yn cynrychioli safbwyntiau'r unigolyn a'i anfonodd (unigolion a'u hanfonodd) ac ni ddylid eu hystyried fel safbwynt swyddogol Cyngor Bwrdeistref Sirol Pen-y-bont ar Ogwr. Mae'r cynnwys yn gyfrinachol ac wedi'i fwriadu ar gyfer y sawl y'i cyfeiriwyd ato yn unig. Os ydych wedi ei dderbyn mewn camgymeriad, rhowch wybod i weinyddwr y system ar (+44) 01656 642111.

Mae'r e-bost hwn ac unrhyw atodiadau wedi cael eu sganio gyda 'MessageLabs SkyScan' - http://www.messagelabs.com/
________________________________________________________________________

Reply all
Reply to author
Forward
0 new messages