Re: [asterisk-users] VM notification to multiple email recipients

2013-09-12 Thread A J Stiles
On Wednesday 11 September 2013, Mike Diehl wrote:
 Hi all,
 
 I've got a user who wants to receive voicemail notifications at two
 different email addresses.  I could probably setup an alias in
 /etc/aliases, but then I'd have to manage that across multiple servers,
 which I don't want to do.
 
 Is there a way I can tell Asterisk to send to multiple addresses?
 
 Mike

Personally, I'd set up a whole new user account to receive the notification e-
mails, and then use a procmail recipe to forward it to the necessary accounts.

Or if I was feeling particularly lazy, I'd tell the user to go and
$ man procmailrc
;)

-- 
AJS

Answers come *after* questions.

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] VM notification to multiple email recipients

2013-09-11 Thread jg
If you use a standard command line mailer (like mail, or mutt), then you can simply concatenate 
the email addresses. You could do something like this:


[globals]
...
EMAIL=mdiehlena...@gmail.com,a...@nowhere.com,d...@nowhere.com,
...
same = n(sendit),System(echo ${msg} | mutt -s blabla ${EMAIL})

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] VM notification to multiple email recipients

2013-09-11 Thread Carlos Rojas
Hi

You can do this,
http://mike.eire.ca/2012/02/03/asterisk-1-8-vm-multiple-emails/

If you are using asterisk 1.8


On Wed, Sep 11, 2013 at 1:55 PM, Mike Diehl mdiehlena...@gmail.com wrote:

 Hi all,

 I've got a user who wants to receive voicemail notifications at two
 different email addresses.  I could probably setup an alias in
 /etc/aliases, but then I'd have to manage that across multiple servers,
 which I don't want to do.

 Is there a way I can tell Asterisk to send to multiple addresses?

 Mike

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] VM notification to multiple email recipients

2013-09-11 Thread jg

Well, my suggestions is not so good with Comedian Mail.

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] VM notification to multiple email recipients

2013-09-11 Thread Mike Diehl
Hi all,

I've got a user who wants to receive voicemail notifications at two
different email addresses.  I could probably setup an alias in
/etc/aliases, but then I'd have to manage that across multiple servers,
which I don't want to do.

Is there a way I can tell Asterisk to send to multiple addresses?

Mike
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] VM notification to multiple email recipients

2013-09-11 Thread Mike Diehl
OK, and to make things even more difficult, I store my voicemail and
voicemail configuration in MySql.

Looks like, for now, I will be creating aliases in /etc/aliases and
sync'ing that across my servers

Thank you for your suggestions.

Mike.


On Wed, Sep 11, 2013 at 12:14 PM, Carlos Rojas crt.ro...@gmail.com wrote:

 Hi

 You can do this,
 http://mike.eire.ca/2012/02/03/asterisk-1-8-vm-multiple-emails/

 If you are using asterisk 1.8


 On Wed, Sep 11, 2013 at 1:55 PM, Mike Diehl mdiehlena...@gmail.comwrote:

 Hi all,

 I've got a user who wants to receive voicemail notifications at two
 different email addresses.  I could probably setup an alias in
 /etc/aliases, but then I'd have to manage that across multiple servers,
 which I don't want to do.

 Is there a way I can tell Asterisk to send to multiple addresses?

 Mike

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users



 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] VM notification to multiple email recipients

2013-09-11 Thread Jim Lucas

Create an alias on the mail server rather then on each asterisk box.

On 09/11/2013 11:44 AM, Mike Diehl wrote:

OK, and to make things even more difficult, I store my voicemail and
voicemail configuration in MySql.

Looks like, for now, I will be creating aliases in /etc/aliases and
sync'ing that across my servers

Thank you for your suggestions.

Mike.


On Wed, Sep 11, 2013 at 12:14 PM, Carlos Rojas crt.ro...@gmail.com wrote:


Hi

You can do this,
http://mike.eire.ca/2012/02/03/asterisk-1-8-vm-multiple-emails/

If you are using asterisk 1.8


On Wed, Sep 11, 2013 at 1:55 PM, Mike Diehl mdiehlena...@gmail.comwrote:


Hi all,

I've got a user who wants to receive voicemail notifications at two
different email addresses.  I could probably setup an alias in
/etc/aliases, but then I'd have to manage that across multiple servers,
which I don't want to do.

Is there a way I can tell Asterisk to send to multiple addresses?

Mike

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users




--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users





--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users




--
Jim Lucas

http://www.cmsws.com/
http://www.cmsws.com/examples/

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users