[qmailtoaster] Mailing list info / suggestions

2019-02-04 Thread Remo Mattei
https://ezmlm.cr.yp.narkive.com/CvskGkAA/sending-personalized-messages-with-ezmlm
 


Can someone let me know if they have done something like that where 

Dear John,
Rest of the message...'

substituting a variable with the subscriber's name (or any other field for that 
matter)

Re: [qmailtoaster] Mailing list -- frontend web

2019-02-01 Thread remo
Thanks I will check it out

> Il giorno 1 feb 2019, alle ore 16:18, Angus McIntyre  ha 
> scritto:
> 
> My own notes are a mess, and I did this a long time ago, on a CentOS 5 
> server, so I'm not sure how much I can help you.
> 
> However, there's actually a page at:
> 
>   http://wiki.qmailtoaster.com/index.php/Mailman
> 
> that describes how to do it, and I think I followed the instructions there.
> 
> That page describes an install on CentOS 6; I don't know if the mailman 
> package has been updated for CentOS 7, or whether any of this is still 
> relevant.
> 
> From my notes, it looks as if the basic installation was done with:
> 
>yum --enablerepo=qtp-CentOS install mailman
> 
> Following that, I did:
> 
>vi /etc/mailman/mm_cfg.py
> 
> and added the line:
> 
>add_virtualhost('lists.myhost.com','lists.myhost.com')
> 
> where 'lists.myhost.com' was a subdomain I set up for this purpose. This will 
> set up a virtual host under mailman's control for your web UI. Obviously, 
> replace 'lists.myhost.com' with whatever domain you want to use.
> 
> Next, I did:
> 
>/usr/lib/mailman/bin/genaliases
> 
> and then copied the output from that to the end of the '/etc/aliases' file.
> 
> I also added a Vpopmail domain with:
> 
>  /home/vpopmail/bin/vadddomain lists.myhost.com MyPostmasterPass
> 
> and ran the command:
> 
>  /usr/lib/mailman/bin/check_perms -f
> 
> to check that all permissions were set up properly.
> 
> Then I did:
> 
>  cp /usr/share/doc/mailman-2.1.*/contrib/qmail-to-mailman.py \
>  /usr/lib/mailman/Mailman/MTA/.
> 
> (copying the 'qmail-to-mailman.py' script included with the distribution into 
> the appropriate place in the installed mailman) and then edited the script 
> with:
> 
>  vi /usr/lib/mailman/Mailman/MTA/qmail-to-mailman.py
> 
> to ensure the following two variables were defined as below:
> 
>  MailmanHome = "/usr/lib/mailman"
>  MailmanVar = "/var/lib/mailman"
> 
> One last thing: the Apache vhost configuration file for this subdomain looked 
> like:
> 
>
>ServerName lists.myhost.com
>#ServerAlias lists.myhost.com
> 
>DocumentRoot /home/www/mylists/www/
> 
>ErrorLog /home/www/mylists/logs/error-log
>LogLevel error
>LogFormat "combined"
>CustomLog /home/www/mylists/logs/access-log "combined"
> 
>ServerAdmin webmas...@nomadcode.com
> 
>AddDefaultCharset UTF-8
> 
>ErrorDocument 404 /errordocs/Error404.php
>ErrorDocument 403 /errordocs/Error403.html
> 
>ScriptAlias /cgi-bin/ "/home/www/mylists/www/cgi-bin/"
>ScriptAlias /mailman/ "/usr/lib/mailman/cgi-bin/"
> 
>Alias   /pipermail/ /var/lib/mailman/archives/public/
> 
>
>AllowOverride None
>Options ExecCGI FollowSymLinks
>Order allow,deny
>Allow from all
>
> 
>
>Options Indexes FollowSymLinks
>AllowOverride None
>Order Deny,Allow
>Allow from all
>
> 
>
>Options Indexes FollowSymLinks
>AllowOverride None
>Order allow,deny
>Allow from all
>
> 
> (obviously, replace 'myhost.com' with whatever domain you're using, and 
> '/home/www/mylists/www' by an appropriate path to your host's document tree).
> 
> I think that should get you most of the way there. I'm sorry not to be able 
> to give you more exact instructions, but, as I say, I did this a very long 
> time ago and I didn't take the time to document what I did properly. Sorry.
> 
> Angus
> 
> Remo Mattei wrote on 2/1/19 9:03 PM:
>> Can you share the installation steps?
>> I need something that has like unsubscribe using a web page, and something I 
>> am also looking on how to use the ezmlm-cron if anyone has set that up 
>> please let me know for tips etc.
>> Remo
>>> On Feb 1, 2019, at 12:56, Angus McIntyre  wrote:
>>> 
>>> I have used mailman on a qmailtoaster host.
>>> 
>>> I never loved it. Everything about it, from the UI to the general technical 
>>> approach, seemed to be stuck in about 1996. However, once I'd got it set up 
>>> and working, it did the job and needed very little attention.
>>> 
>>> I'd like to think that there's something nicer available by now, but if you 
>>> can't find it, then mailman will certainly get the job done.
>>> 
>>> Angus
>>> 
>>> 
 On 2019-02-01 04:09, Remo Mattei wrote:
 Thanks Fabian, I never used mailman myself for a reason or another I
 never had the need  until now.
 Remo
> On Jan 31, 2019, at 17:31, Fabian A. Santiago 
>  wrote:
> ‐‐‐ Original Message ‐‐‐
> On Thursday, January 31, 2019 8:13 PM, Remo Mattei  
> wrote:
>> Hello I wonder if anyone has any suggestions on which mailing list to 
>> use for a project I am going to work on, so clients can automatically 
>> unsubscribe etc.. Any tips are welcome.
>> Remo
>> 

Re: [qmailtoaster] Mailing list -- frontend web

2019-02-01 Thread Angus McIntyre
My own notes are a mess, and I did this a long time ago, on a CentOS 5 
server, so I'm not sure how much I can help you.


However, there's actually a page at:

   http://wiki.qmailtoaster.com/index.php/Mailman

that describes how to do it, and I think I followed the instructions there.

That page describes an install on CentOS 6; I don't know if the mailman 
package has been updated for CentOS 7, or whether any of this is still 
relevant.


From my notes, it looks as if the basic installation was done with:

yum --enablerepo=qtp-CentOS install mailman

Following that, I did:

vi /etc/mailman/mm_cfg.py

and added the line:

add_virtualhost('lists.myhost.com','lists.myhost.com')

where 'lists.myhost.com' was a subdomain I set up for this purpose. This 
will set up a virtual host under mailman's control for your web UI. 
Obviously, replace 'lists.myhost.com' with whatever domain you want to use.


Next, I did:

/usr/lib/mailman/bin/genaliases

and then copied the output from that to the end of the '/etc/aliases' file.

I also added a Vpopmail domain with:

  /home/vpopmail/bin/vadddomain lists.myhost.com MyPostmasterPass

and ran the command:

  /usr/lib/mailman/bin/check_perms -f

to check that all permissions were set up properly.

Then I did:

  cp /usr/share/doc/mailman-2.1.*/contrib/qmail-to-mailman.py \
  /usr/lib/mailman/Mailman/MTA/.

(copying the 'qmail-to-mailman.py' script included with the distribution 
into the appropriate place in the installed mailman) and then edited the 
script with:


  vi /usr/lib/mailman/Mailman/MTA/qmail-to-mailman.py

to ensure the following two variables were defined as below:

  MailmanHome = "/usr/lib/mailman"
  MailmanVar = "/var/lib/mailman"

One last thing: the Apache vhost configuration file for this subdomain 
looked like:



ServerName lists.myhost.com
#ServerAlias lists.myhost.com

DocumentRoot /home/www/mylists/www/

ErrorLog /home/www/mylists/logs/error-log
LogLevel error
LogFormat "combined"
CustomLog /home/www/mylists/logs/access-log "combined"

ServerAdmin webmas...@nomadcode.com

AddDefaultCharset UTF-8

ErrorDocument 404 /errordocs/Error404.php
ErrorDocument 403 /errordocs/Error403.html

ScriptAlias /cgi-bin/ "/home/www/mylists/www/cgi-bin/"
ScriptAlias /mailman/ "/usr/lib/mailman/cgi-bin/"

Alias   /pipermail/ /var/lib/mailman/archives/public/


AllowOverride None
Options ExecCGI FollowSymLinks
Order allow,deny
Allow from all



Options Indexes FollowSymLinks
AllowOverride None
Order Deny,Allow
Allow from all



Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all


(obviously, replace 'myhost.com' with whatever domain you're using, and 
'/home/www/mylists/www' by an appropriate path to your host's document 
tree).


I think that should get you most of the way there. I'm sorry not to be 
able to give you more exact instructions, but, as I say, I did this a 
very long time ago and I didn't take the time to document what I did 
properly. Sorry.


Angus

Remo Mattei wrote on 2/1/19 9:03 PM:

Can you share the installation steps?

I need something that has like unsubscribe using a web page, and something I am 
also looking on how to use the ezmlm-cron if anyone has set that up please let 
me know for tips etc.

Remo


On Feb 1, 2019, at 12:56, Angus McIntyre  wrote:

I have used mailman on a qmailtoaster host.

I never loved it. Everything about it, from the UI to the general technical 
approach, seemed to be stuck in about 1996. However, once I'd got it set up and 
working, it did the job and needed very little attention.

I'd like to think that there's something nicer available by now, but if you 
can't find it, then mailman will certainly get the job done.

Angus


On 2019-02-01 04:09, Remo Mattei wrote:

Thanks Fabian, I never used mailman myself for a reason or another I
never had the need  until now.
Remo

On Jan 31, 2019, at 17:31, Fabian A. Santiago  
wrote:
‐‐‐ Original Message ‐‐‐
On Thursday, January 31, 2019 8:13 PM, Remo Mattei  wrote:

Hello I wonder if anyone has any suggestions on which mailing list to use for a 
project I am going to work on, so clients can automatically unsubscribe etc.. 
Any tips are welcome.
Remo
--
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


Re: [qmailtoaster] Mailing list -- frontend web

2019-02-01 Thread Remo Mattei
Can you share the installation steps?

I need something that has like unsubscribe using a web page, and something I am 
also looking on how to use the ezmlm-cron if anyone has set that up please let 
me know for tips etc.

Remo 

> On Feb 1, 2019, at 12:56, Angus McIntyre  wrote:
> 
> I have used mailman on a qmailtoaster host.
> 
> I never loved it. Everything about it, from the UI to the general technical 
> approach, seemed to be stuck in about 1996. However, once I'd got it set up 
> and working, it did the job and needed very little attention.
> 
> I'd like to think that there's something nicer available by now, but if you 
> can't find it, then mailman will certainly get the job done.
> 
> Angus
> 
> 
> On 2019-02-01 04:09, Remo Mattei wrote:
>> Thanks Fabian, I never used mailman myself for a reason or another I
>> never had the need  until now.
>> Remo
>>> On Jan 31, 2019, at 17:31, Fabian A. Santiago  
>>> wrote:
>>> ‐‐‐ Original Message ‐‐‐
>>> On Thursday, January 31, 2019 8:13 PM, Remo Mattei  wrote:
 Hello I wonder if anyone has any suggestions on which mailing list to use 
 for a project I am going to work on, so clients can automatically 
 unsubscribe etc.. Any tips are welcome.
 Remo
 --
 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
>>> Hello,
>>> I've always been a fan of mailman and have myself used it with qmailtoaster 
>>> in the past. i don't have all the helpful little tidbits as to how at my 
>>> disposal currently but it is very much possible to get it working. I'll 
>>> send along whatever i can dig up. personally i would stick with the 2.x 
>>> version series but that's just out of familiarity. the 3.x series is still 
>>> a little new'ish.
>>> --
>>> Thanks,
>>> Fabian S.
>>> OpenPGP:
>>> 0x643082042DC83E6D94B86C405E3DAA18A1C22D8F
>>> -
>>> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
>>> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
>> -
>> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
>> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
> 
> -
> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
> 


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Mailing list -- frontend web

2019-02-01 Thread Angus McIntyre

I have used mailman on a qmailtoaster host.

I never loved it. Everything about it, from the UI to the general 
technical approach, seemed to be stuck in about 1996. However, once I'd 
got it set up and working, it did the job and needed very little 
attention.


I'd like to think that there's something nicer available by now, but if 
you can't find it, then mailman will certainly get the job done.


Angus


On 2019-02-01 04:09, Remo Mattei wrote:

Thanks Fabian, I never used mailman myself for a reason or another I
never had the need  until now.

Remo

On Jan 31, 2019, at 17:31, Fabian A. Santiago 
 wrote:




‐‐‐ Original Message ‐‐‐
On Thursday, January 31, 2019 8:13 PM, Remo Mattei  
wrote:


Hello I wonder if anyone has any suggestions on which mailing list to 
use for a project I am going to work on, so clients can automatically 
unsubscribe etc.. Any tips are welcome.


Remo

--

To unsubscribe, e-mail: 
qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: 
qmailtoaster-list-h...@qmailtoaster.com


Hello,

I've always been a fan of mailman and have myself used it with 
qmailtoaster in the past. i don't have all the helpful little tidbits 
as to how at my disposal currently but it is very much possible to get 
it working. I'll send along whatever i can dig up. personally i would 
stick with the 2.x version series but that's just out of familiarity. 
the 3.x series is still a little new'ish.



--

Thanks,

Fabian S.

OpenPGP:

0x643082042DC83E6D94B86C405E3DAA18A1C22D8F


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: 
qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: 
qmailtoaster-list-h...@qmailtoaster.com


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Mailing list -- frontend web

2019-02-01 Thread Eric Broch

ezmlm

On 1/31/2019 6:13 PM, Remo Mattei wrote:

Hello I wonder if anyone has any suggestions on which mailing list to use for a 
project I am going to work on, so clients can automatically unsubscribe etc.. 
Any tips are welcome.

Remo
-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


--
Eric Broch
White Horse Technical Consulting (WHTC)


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Mailing list -- frontend web

2019-01-31 Thread Remo Mattei
Thanks Fabian, I never used mailman myself for a reason or another I never had 
the need  until now.

Remo 

> On Jan 31, 2019, at 17:31, Fabian A. Santiago  
> wrote:
> 
> 
> 
> ‐‐‐ Original Message ‐‐‐
> On Thursday, January 31, 2019 8:13 PM, Remo Mattei  wrote:
> 
>> Hello I wonder if anyone has any suggestions on which mailing list to use 
>> for a project I am going to work on, so clients can automatically 
>> unsubscribe etc.. Any tips are welcome.
>> 
>> Remo
>> 
>> --
>> 
>> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
>> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
> 
> Hello,
> 
> I've always been a fan of mailman and have myself used it with qmailtoaster 
> in the past. i don't have all the helpful little tidbits as to how at my 
> disposal currently but it is very much possible to get it working. I'll send 
> along whatever i can dig up. personally i would stick with the 2.x version 
> series but that's just out of familiarity. the 3.x series is still a little 
> new'ish.
> 
> 
> --
> 
> Thanks,
> 
> Fabian S.
> 
> OpenPGP:
> 
> 0x643082042DC83E6D94B86C405E3DAA18A1C22D8F
> 
> 
> -
> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
> 


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Mailing list -- frontend web

2019-01-31 Thread Fabian A. Santiago



‐‐‐ Original Message ‐‐‐
On Thursday, January 31, 2019 8:13 PM, Remo Mattei  wrote:

> Hello I wonder if anyone has any suggestions on which mailing list to use for 
> a project I am going to work on, so clients can automatically unsubscribe 
> etc.. Any tips are welcome.
>
> Remo
>
> --
>
> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

Hello,

I've always been a fan of mailman and have myself used it with qmailtoaster in 
the past. i don't have all the helpful little tidbits as to how at my disposal 
currently but it is very much possible to get it working. I'll send along 
whatever i can dig up. personally i would stick with the 2.x version series but 
that's just out of familiarity. the 3.x series is still a little new'ish.


--

Thanks,

Fabian S.

OpenPGP:

0x643082042DC83E6D94B86C405E3DAA18A1C22D8F


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Mailing list -- frontend web

2019-01-31 Thread Remo Mattei
Hello I wonder if anyone has any suggestions on which mailing list to use for a 
project I am going to work on, so clients can automatically unsubscribe etc.. 
Any tips are welcome.

Remo 
-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Mailing List

2016-04-26 Thread Ed Morrison

HI Eric:

Thanks for the response.  This is an announcement only list.  It is not 
meant for discussions.  I have regular announcements that need to be 
sent and they need to be out to the subscribers before they hit their 
offices or the road.  This has been a manual process for me but it would 
be a far better service to speed up and automate the process.


Ed


On 4/26/2016 5:32 AM, Eric wrote:


Ed,

Shouldn't you change 'Posting Messages' to 'Only subscribers can post, 
all others bounce' or 'Only subscribers can post, all others go to 
moderators for approval'? And shouldn't replies go to the entire list?


I'm sorry if I'm not much help, I've only played around with mailing 
lists on a limited bases.


Eric

On 4/25/2016 4:01 PM, Ed Morrison wrote:

Hey Guys,

I am having issues with getting an email list I created on QMT that 
will allow a moderator (non QMT Domain email) to send email to the 
list without moderator approval.  I understand this is not ideal but 
would like to be able to perform this in order to send timely 
announcements every week.automatically.  any thoughts on how to 
make this work?  Right now it is requiring moderator approval for 
sending the list, properties are as follows.  Thanks!:


*_Posting Messages_*
Anyone can post.
Only subscribers can post, all others bounce.
Only subscribers can post, all others go to moderators for approval.
Only moderators can post, all others bounce.
Only moderators can post, all messages go to moderators for approval.

*_List Options_*

Replies should go tothe original sender
the entire list
the address


Include a trailer at the end of each message.
Set up a digest version of the list. (Called vsnusers-digest.)
Service requests sent to vsnusers-request.
(In addition to vsnusers-subscribe, vsnusers-unsubscribe, etc. users 
can send commands to vsnusers-request.)


*_Remote Administration_*
Allow remote administration by moderators.
Make this a private list. (Only admins can subscribe, unsubscribe, 
access index, etc.)


Remote admins can:  View and search the subscriber list.
Edit files in the text directory. (e.g., message trailer, help files, 
etc.).


*_Subscription Requests_*
Requests to subscribe to the list:
Require confirmation by a reply to a message sent to the subscription 
address.

Require the approval of a moderator.
Requests to unsubscribe from the list:
Require confirmation by a reply to a message sent to the subscription 
address.
Warning: if you do not require sender confirmation, it will be 
possible for people to forge email to subscribe or unsubscribe 
someone from this list without their authorization.


*_Message Archives_*
Archive list messages.   Archive retrieval is

.
Index archive for web access via ezmlm-cgi.







Re: [qmailtoaster] Mailing List

2016-04-26 Thread Eric

Ed,

Shouldn't you change 'Posting Messages' to 'Only subscribers can post, 
all others bounce' or 'Only subscribers can post, all others go to 
moderators for approval'? And shouldn't replies go to the entire list?


I'm sorry if I'm not much help, I've only played around with mailing 
lists on a limited bases.


Eric

On 4/25/2016 4:01 PM, Ed Morrison wrote:

Hey Guys,

I am having issues with getting an email list I created on QMT that 
will allow a moderator (non QMT Domain email) to send email to the 
list without moderator approval.  I understand this is not ideal but 
would like to be able to perform this in order to send timely 
announcements every week.automatically.  any thoughts on how to 
make this work?  Right now it is requiring moderator approval for 
sending the list, properties are as follows. Thanks!:


*_Posting Messages_*
Anyone can post.
Only subscribers can post, all others bounce.
Only subscribers can post, all others go to moderators for approval.
Only moderators can post, all others bounce.
Only moderators can post, all messages go to moderators for approval.

*_List Options_*

Replies should go tothe original sender
the entire list
the address


Include a trailer at the end of each message.
Set up a digest version of the list. (Called vsnusers-digest.)
Service requests sent to vsnusers-request.
(In addition to vsnusers-subscribe, vsnusers-unsubscribe, etc. users 
can send commands to vsnusers-request.)


*_Remote Administration_*
Allow remote administration by moderators.
Make this a private list. (Only admins can subscribe, unsubscribe, 
access index, etc.)


Remote admins can:  View and search the subscriber list.
Edit files in the text directory. (e.g., message trailer, help files, 
etc.).


*_Subscription Requests_*
Requests to subscribe to the list:
Require confirmation by a reply to a message sent to the subscription 
address.

Require the approval of a moderator.
Requests to unsubscribe from the list:
Require confirmation by a reply to a message sent to the subscription 
address.
Warning: if you do not require sender confirmation, it will be 
possible for people to forge email to subscribe or unsubscribe someone 
from this list without their authorization.


*_Message Archives_*
Archive list messages.   Archive retrieval is

.
Index archive for web access via ezmlm-cgi.





[qmailtoaster] Mailing List

2016-04-25 Thread Ed Morrison

Hey Guys,

I am having issues with getting an email list I created on QMT that will 
allow a moderator (non QMT Domain email) to send email to the list 
without moderator approval.  I understand this is not ideal but would 
like to be able to perform this in order to send timely announcements 
every week.automatically.  any thoughts on how to make this work?  
Right now it is requiring moderator approval for sending the list, 
properties are as follows.  Thanks!:


*_Posting Messages_*
Anyone can post.
Only subscribers can post, all others bounce.
Only subscribers can post, all others go to moderators for approval.
Only moderators can post, all others bounce.
Only moderators can post, all messages go to moderators for approval.

*_List Options_*

Replies should go tothe original sender
the entire list
the address


Include a trailer at the end of each message.
Set up a digest version of the list. (Called vsnusers-digest.)
Service requests sent to vsnusers-request.
(In addition to vsnusers-subscribe, vsnusers-unsubscribe, etc. users can 
send commands to vsnusers-request.)


*_Remote Administration_*
Allow remote administration by moderators.
Make this a private list. (Only admins can subscribe, unsubscribe, 
access index, etc.)


Remote admins can:  View and search the subscriber list.
Edit files in the text directory. (e.g., message trailer, help files, 
etc.).


*_Subscription Requests_*
Requests to subscribe to the list:
Require confirmation by a reply to a message sent to the subscription 
address.

Require the approval of a moderator.
Requests to unsubscribe from the list:
Require confirmation by a reply to a message sent to the subscription 
address.
Warning: if you do not require sender confirmation, it will be possible 
for people to forge email to subscribe or unsubscribe someone from this 
list without their authorization.


*_Message Archives_*
Archive list messages.   Archive retrieval is

.
Index archive for web access via ezmlm-cgi.



[qmailtoaster] Mailing list

2014-09-22 Thread rajeshrudramani
Hi,

 Recently we are facing issue in mailing list in qmail.  If we
are sendind mails to any mailing list means, we are getting bounce
message. Please find the Error below:

ezmlm-store: fatal: I'm sorry, you are not allowed to post messages to this list
(#5.7.2)



Regards,
Rajesh

-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] mailing list

2013-07-17 Thread David

Hi All,

I am wanting to configure a mailing list on our toaster box for our 
customer base and I need a good

opt out web interface.
The list will be private only to our customers and I want to give them 
an opt out link if they want off the

list.

Any ideas,thoughts or suggestions welcome.

thanks
Dave

attachment: dmilholen.vcf-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

Re: [qmailtoaster] mailing list

2013-07-17 Thread Dan McAllister

Dave...

Look on the bottom of your own message here:

   *-
   To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
   For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
   *

Normal list management works this way -- users just reply to 
list-name-unsubscribe@domain-name and they get removed.
 - This utilizes the QMAIL sub-account feature... anything after the - 
means its a sub-account to be delivered to the mailbox that appears 
before the - dash
So, the mail list gets the -unsibscribe message and processes it 
automagically.


A website interface would have to accomplish quite a bit -- including 
verifying if the requested mail list even exists, if the user requested 
is on the list, and lastly, whether the unsubscribe actually worked.

WAY too much work when the e-mail method is so simple  free!

Automatically adding those lines at the bottom of list postings is an 
option in the setup of the list.


Dan McAllister
QMT DNS/Mirror Admin

**

On 7/17/2013 12:28 PM, David wrote:

Hi All,

I am wanting to configure a mailing list on our toaster box for our 
customer base and I need a good

opt out web interface.
The list will be private only to our customers and I want to give them 
an opt out link if they want off the

list.

Any ideas,thoughts or suggestions welcome.

thanks
Dave



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



--

PLEASE TAKE NOTE OF OUR NEW ADDRESS
===
IT4SOHO, LLC
33 - 4th Street N, Suite 211
St. Petersburg, FL 33701-3806

CALL TOLL FREE:
  877-IT4SOHO

877-484-7646 Phone
727-647-7646 Local
727-490-4394 Fax

We have support plans for QMail!



Re: [qmailtoaster] mailing list

2013-07-17 Thread David

Face PALM moment..
Sometimes I just need to be enlightened :)
Thanks
Dave

On 07/17/2013 11:50 AM, Dan McAllister wrote:

Dave...

Look on the bottom of your own message here:

*-
To unsubscribe, e-mail:qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail:qmailtoaster-list-h...@qmailtoaster.com
*

Normal list management works this way -- users just reply to 
list-name-unsubscribe@domain-name and they get removed.
 - This utilizes the QMAIL sub-account feature... anything after the - 
means its a sub-account to be delivered to the mailbox that appears 
before the - dash
So, the mail list gets the -unsibscribe message and processes it 
automagically.


A website interface would have to accomplish quite a bit -- including 
verifying if the requested mail list even exists, if the user 
requested is on the list, and lastly, whether the unsubscribe actually 
worked.

WAY too much work when the e-mail method is so simple  free!

Automatically adding those lines at the bottom of list postings is an 
option in the setup of the list.


Dan McAllister
QMT DNS/Mirror Admin
**

On 7/17/2013 12:28 PM, David wrote:

Hi All,

I am wanting to configure a mailing list on our toaster box for our 
customer base and I need a good

opt out web interface.
The list will be private only to our customers and I want to give 
them an opt out link if they want off the

list.

Any ideas,thoughts or suggestions welcome.

thanks
Dave



-
To unsubscribe, e-mail:qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail:qmailtoaster-list-h...@qmailtoaster.com



--

PLEASE TAKE NOTE OF OUR NEW ADDRESS
===
IT4SOHO, LLC
33 - 4th Street N, Suite 211
St. Petersburg, FL 33701-3806

CALL TOLL FREE:
   877-IT4SOHO

877-484-7646 Phone
727-647-7646 Local
727-490-4394 Fax

We have support plans for QMail!



attachment: dmilholen.vcf-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

Re: [qmailtoaster] mailing list

2013-07-17 Thread David

Ok,
 Is there a web/PHP/mysql system out there to add and remove customers 
from the list from an admin side?
So for example if we have a customer who is no longer on our network we 
can just simply remove them,

Thanks
Dave

On 07/17/2013 11:28 AM, David wrote:

Hi All,

I am wanting to configure a mailing list on our toaster box for our 
customer base and I need a good

opt out web interface.
The list will be private only to our customers and I want to give them 
an opt out link if they want off the

list.

Any ideas,thoughts or suggestions welcome.

thanks
Dave



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


attachment: dmilholen.vcf-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

Re: [qmailtoaster] mailing list

2013-07-17 Thread Kelly Cobean
 

That's what qmailadmin should do. You can manage lists, accounts,
robots all from qmailadmin. 

On 07/17/2013 14:48, David wrote: 


Ok,
 Is there a web/PHP/mysql system out there to add and remove
customers from the list from an admin side?
 So for example if we have
a customer who is no longer on our network we can just simply remove
them,
 Thanks
 Dave
 
 On 07/17/2013 11:28 AM, David wrote: 
 

Hi All, 
 
 I am wanting to configure a mailing list on our toaster
box for our customer base and I need a good 
 opt out web interface.

 The list will be private only to our customers and I want to give
them an opt out link if they want off the 
 list. 
 
 Any
ideas,thoughts or suggestions welcome. 
 
 thanks 
 Dave 
 

-

To unsubscribe, e-mail:
qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional
commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
 

-

To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail:
qmailtoaster-list-h...@qmailtoaster.com

 

RE: [qmailtoaster] mailing list

2013-07-17 Thread mattias
no!
think yo meen vqadmin or what is  it have for name

  _  

From: Kelly Cobean [mailto:kcob...@vipercrazy.com] 
Sent: den 17 juli 2013 20:56
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] mailing list



That's what qmailadmin should do.  You can manage lists, accounts, robots
all from qmailadmin.

On 07/17/2013 14:48, David wrote:

Ok,
 Is there a web/PHP/mysql system out there to add and remove customers from
the list from an admin side?
So for example if we have a customer who is no longer on our network we can
just simply remove them,
Thanks
Dave


On 07/17/2013 11:28 AM, David wrote:

Hi All, 

I am wanting to configure a mailing list on our toaster box for our customer
base and I need a good 
opt out web interface. 
The list will be private only to our customers and I want to give them an
opt out link if they want off the 
list. 

Any ideas,thoughts or suggestions welcome. 

thanks 
Dave 




-

To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-

To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

 


RE: [qmailtoaster] mailing list

2013-07-17 Thread mattias
have qmt not that already?

  _  

From: David [mailto:dmilho...@wletc.com] 
Sent: den 17 juli 2013 20:49
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] mailing list


Ok,
 Is there a web/PHP/mysql system out there to add and remove customers from
the list from an admin side?
So for example if we have a customer who is no longer on our network we can
just simply remove them,
Thanks
Dave


On 07/17/2013 11:28 AM, David wrote:


Hi All, 

I am wanting to configure a mailing list on our toaster box for our customer
base and I need a good 
opt out web interface. 
The list will be private only to our customers and I want to give them an
opt out link if they want off the 
list. 

Any ideas,thoughts or suggestions welcome. 

thanks 
Dave 


 

-

To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




RE: [qmailtoaster] mailing list

2013-07-17 Thread Kelly Cobean
 

vqadmin is for adding/removing/managing domains. Adding and removing
customers from an EZ-MLM list is done using qmailadmin. At least that's
how I do it in my QTP install. 

On 07/17/2013 14:58, mattias wrote: 


no! 
 think yo meen vqadmin or what is it have for name 
 

-
 FROM: Kelly Cobean
[mailto:kcob...@vipercrazy.com] 
 SENT: den 17 juli 2013 20:56
 TO:
qmailtoaster-list@qmailtoaster.com
 SUBJECT: Re: [qmailtoaster] mailing
list
 
 That's what qmailadmin should do. You can manage lists,
accounts, robots all from qmailadmin. 
 
 On 07/17/2013 14:48, David
wrote: 
 
 Ok,
 Is there a web/PHP/mysql system out there to add
and remove customers from the list from an admin side?
 So for example
if we have a customer who is no longer on our network we can just simply
remove them,
 Thanks
 Dave
 
 On 07/17/2013 11:28 AM, David
wrote: 
 
 Hi All, 
 
 I am wanting to configure a mailing
list on our toaster box for our customer base and I need a good 
 opt
out web interface. 
 The list will be private only to our customers
and I want to give them an opt out link if they want off the 
 list.

 
 Any ideas,thoughts or suggestions welcome. 
 
 thanks

 Dave 
 

-

To unsubscribe, e-mail:
qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional
commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
 

-

To unsubscribe, e-mail:
qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional
commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

 

RE: [qmailtoaster] mailing list

2013-07-17 Thread mattias
ok

  _  

From: Kelly Cobean [mailto:kcob...@vipercrazy.com] 
Sent: den 17 juli 2013 21:03
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] mailing list



vqadmin is for adding/removing/managing domains.  Adding and removing
customers from an EZ-MLM list is done using qmailadmin.  At least that's how
I do it in my QTP install.

On 07/17/2013 14:58, mattias wrote:

no!
think yo meen vqadmin or what is  it have for name

  _  

From: Kelly Cobean [mailto:kcob...@vipercrazy.com] 
Sent: den 17 juli 2013 20:56
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] mailing list

 

That's what qmailadmin should do.  You can manage lists, accounts, robots
all from qmailadmin.

On 07/17/2013 14:48, David wrote:

Ok,
 Is there a web/PHP/mysql system out there to add and remove customers from
the list from an admin side?
So for example if we have a customer who is no longer on our network we can
just simply remove them,
Thanks
Dave


On 07/17/2013 11:28 AM, David wrote:

Hi All, 

I am wanting to configure a mailing list on our toaster box for our customer
base and I need a good 
opt out web interface. 
The list will be private only to our customers and I want to give them an
opt out link if they want off the 
list. 

Any ideas,thoughts or suggestions welcome. 

thanks 
Dave 




-

To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-

To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

 

 


RE: [qmailtoaster] mailing list

2013-07-17 Thread Fabian Santiago
No its qmail admin that does that. He's right. 


Sent from my Verizon Wireless 4G LTE Smartphone

 Original message 
From: mattias m...@mjw.se 
Date: 07/17/2013  2:58 PM  (GMT-05:00) 
To: qmailtoaster-list@qmailtoaster.com 
Subject: RE: [qmailtoaster] mailing list 
 
no!
think yo meen vqadmin or what is  it have for name

From: Kelly Cobean [mailto:kcob...@vipercrazy.com] 
Sent: den 17 juli 2013 20:56
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] mailing list

That's what qmailadmin should do.  You can manage lists, accounts, robots all 
from qmailadmin.

On 07/17/2013 14:48, David wrote:

Ok,
 Is there a web/PHP/mysql system out there to add and remove customers from the 
list from an admin side?
So for example if we have a customer who is no longer on our network we can 
just simply remove them,
Thanks
Dave

On 07/17/2013 11:28 AM, David wrote:
Hi All, 

I am wanting to configure a mailing list on our toaster box for our customer 
base and I need a good 
opt out web interface. 
The list will be private only to our customers and I want to give them an opt 
out link if they want off the 
list. 

Any ideas,thoughts or suggestions welcome. 

thanks 
Dave 



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
 

[qmailtoaster] Mailing List

2012-06-15 Thread Mike Tirpak
I was on the qmailtoaster mailing list and I have not gotten an email 
from the mailing list since May 20th.  I tried to resubscribe, but still 
have not gotten anything.  What's up?


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Mailing list overloading bandwidth

2012-02-23 Thread Délsio Cabá
Hi Qmail users,

Is there a way to limit the number of simultaneous outgoing messages from
the mailing list besides using  /var/qmail/control/concurrencyremote ?

The problem I am facing is that whenever a user with 8000 emails on a
mailinglist sends an email all other traffic fails

Regards


[qmailtoaster] Mailing List Question

2011-04-15 Thread Scott Hughes
Is it possible to have the mailing list software that comes with QMT to
automatically remove a subscriber if the email bounces back to the server?

 

Example: I have created a script that runs once a day and gathers all of the
email addresses of my domains and if they aren't already, subscribes them to
a mailing list. This way if I need to email all users because of, say, a
planned outage, all the email addresses are there.  However, as people leave
the company I delete their email account but they remain on the mailing
list.

 

Any suggestions?

 

Thanks,

Scott

 



[qmailtoaster] Mailing List Files

2010-02-15 Thread MagicWISP Sales
I have a minor problem - well major for somebody, LOL.  I have a mailing
list setup for one of my domains, I thought she was going to keep it pretty
small, and didn't think it was something she would use much.  Well I was
wrong.  Her list has grown to about 750 customers.  I never backed it up,
and didn't worry about it (my stupidity I know), anyway the server it
resided on took a tank this week.  I can mount the drive and find the
directory it is in, but for some reason I can't copy all of the files.  Not
sure what the problem is.  Can somebody tell me what files I need from it to
recreate the entire list.  She didn't archive her addresses on a soft copy,
all she has is a hard copy, so it is going to be a very time consuming task
to get it running again - and she is my wife's sister, so I kinda am stuck
fixing it - LOL.

 

 

 

Thanks in advance for any help somebody might have.

 

 

 

 

 

Jack Martin

 

MagicWISP

 



Re: [qmailtoaster] Mailing List Files

2010-02-15 Thread Jake Vickers

On 02/15/2010 02:21 PM, MagicWISP Sales wrote:


I have a minor problem - well major for somebody, LOL.  I have a 
mailing list setup for one of my domains, I thought she was going to 
keep it pretty small, and didn't think it was something she would use 
much.  Well I was wrong.  Her list has grown to about 750 customers.  
I never backed it up, and didn't worry about it (my stupidity I know), 
anyway the server it resided on took a tank this week.  I can mount 
the drive and find the directory it is in, but for some reason I can't 
copy all of the files.  Not sure what the problem is.  Can somebody 
tell me what files I need from it to recreate the entire list.  She 
didn't archive her addresses on a soft copy, all she has is a hard 
copy, so it is going to be a very time consuming task to get it 
running again - and she is my wife's sister, so I kinda am stuck 
fixing it - LOL.


Thanks in advance for any help somebody might have.




The files will be in the mailstore:
/home/vpopmail/domains/your-domain.com/list_address/subscribers
They're in a binary format, but you can read them with a text editor 
if you are unable to just copy them to the new machine after recreating 
the mailing list.




[qmailtoaster] mailing list bounces...

2010-01-15 Thread Martin Waschbuesch

Hi all,

Once in a while I get a message like this:



Hi! This is the ezmlm program. I'm managing the
qmailtoaster-list@qmailtoaster.com mailing list.

I'm working for my owner, who can be reached
at qmailtoaster-list-ow...@qmailtoaster.com.

Messages to you from the qmailtoaster-list mailing list seem to
have been bouncing. I've attached a copy of the first bounce
message I received.



The error my toaster gives back is this:

Remote host said: 554 DomainKeys verify status: bad format   (#5.3.0)

Now, I wonder if anyone else has this too? It looks like that either  
means people on this list write to the list with wrong domainkeys  
setup OR my toaster's domainkey setup is not doing something right?


Any ideas?

Thanks,

Martin

--
What a fool believes he sees, no wise man has the power to reason away...

Doobie Brothers






This message was sent using IMP, the Internet Messaging Program.



bin5U5plGWLoA.bin
Description: Öffentlicher  PGP-Schlüssel
-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


[qmailtoaster] Mailing list

2009-09-10 Thread mattias
How to access the list archives via http on a toaster server


-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] Mailing list

2009-09-10 Thread Andreas Galatis
http://www.ezmlm.org/manual/Accessing-the-Archive.html

Am Thursday 10 September 2009 19:28:13 schrieb mattias:
 How to access the list archives via http on a toaster server


 ---
-- Qmailtoaster is sponsored by Vickers Consulting Group
 (www.vickersconsulting.com) Vickers Consulting Group offers Qmailtoaster
 support and installations. If you need professional help with your setup,
 contact them today!
 ---
-- Please visit qmailtoaster.com for the latest news, updates, and
 packages.

   To unsubscribe, e-mail:
 qmailtoaster-list-unsubscr...@qmailtoaster.com For additional commands,
 e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




[qmailtoaster] Mailing list for virtual domain

2009-06-03 Thread Rob Genova
Hi,

I have created a virtual domain and am having trouble getting mailing lists to 
work for it.

Lets say my domain is domain.stanford.edu and my virtual domain is 
virtual.stanford.edu. If I create a mailing list called list, mail to 
l...@domain.stanford.edu succeeds while mail to l...@virtual.stanford.edu 
fails. Any idea how I can correct this? Thanks- Rob

Failure notice:

Hi. This is the qmail-send program at domain.stanford.edu.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

l...@virtual.stanford.edu:
ezmlm-reject: fatal: List address must be in To: or Cc: (#5.7.0)

--- Below this line is a copy of the message.

Return-Path: rgen...@stanford.edu
Received: (qmail 11740 invoked by uid 89); 3 Jun 2009 16:47:57 -
Received: by simscan 1.3.1 ppid: 11732, pid: 11734, t: 0.0614s
 scanners: attach: 1.3.1 clamav: 0.93
/m:46/d:7013 spam: 3.2.4
X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on domain.stanford.edu
X-Spam-Level:
X-Spam-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,RDNS_NONE
autolearn=no version=3.2.4
Received: from unknown (HELO smtp4.stanford.edu) (171.67.219.84)
  by domain.stanford.edu with SMTP; 3 Jun 2009 16:47:57 -
Received-SPF: unknown (domain.stanford.edu: parse error in local policy)
Received: from smtp4.stanford.edu (localhost.localdomain [127.0.0.1])
by localhost (Postfix) with SMTP id 2A16CC963
for l...@virtual.stanford.edu; Wed,  3 Jun 2009 09:47:57 -0700 (PDT)
Received: from zm04.stanford.edu (zm04.Stanford.EDU [171.67.219.154])
by smtp4.stanford.edu (Postfix) with ESMTP id 135F0C4D9
for l...@virtual.stanford.edu; Wed,  3 Jun 2009 09:47:57 -0700 (PDT)
Date: Wed, 3 Jun 2009 09:47:57 -0700 (PDT)
From: Rob Genova rgen...@stanford.edu
To: l...@virtual.stanford.edu
Message-ID: 1786343670.1256501244047677038.javamail.r...@zm04.stanford.edu
Subject: test
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-Originating-IP: [171.66.69.238]
X-Mailer: Zimbra 5.0.15_GA_2851.RHEL4_64 (ZimbraWebClient - FF3.0 
(Win)/5.0.15_GA_2851.RHEL4_64)
X-Authenticated-User: rgen...@stanford.edu


-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] Mailing list for virtual domain

2009-06-03 Thread Vidyadhar
R u adding mailing list email I'd in BCC field
Sent on my BlackBerry® from Vodafone Essar

-Original Message-
From: Rob Genova rgen...@stanford.edu

Date: Wed, 3 Jun 2009 10:36:45 
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] Mailing list for virtual domain

Hi,

I have created a virtual domain and am having trouble getting mailing lists to 
work for it.

Lets say my domain is domain.stanford.edu and my virtual domain is 
virtual.stanford.edu. If I create a mailing list called list, mail to 
l...@domain.stanford.edu succeeds while mail to l...@virtual.stanford.edu 
fails. Any idea how I can correct this? Thanks- Rob

Failure notice:

Hi. This is the qmail-send program at domain.stanford.edu.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

l...@virtual.stanford.edu:
ezmlm-reject: fatal: List address must be in To: or Cc: (#5.7.0)

--- Below this line is a copy of the message.

Return-Path: rgen...@stanford.edu
Received: (qmail 11740 invoked by uid 89); 3 Jun 2009 16:47:57 -
Received: by simscan 1.3.1 ppid: 11732, pid: 11734, t: 0.0614s
 scanners: attach: 1.3.1 clamav: 0.93
/m:46/d:7013 spam: 3.2.4
X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on domain.stanford.edu
X-Spam-Level:
X-Spam-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,RDNS_NONE
autolearn=no version=3.2.4
Received: from unknown (HELO smtp4.stanford.edu) (171.67.219.84)
  by domain.stanford.edu with SMTP; 3 Jun 2009 16:47:57 -
Received-SPF: unknown (domain.stanford.edu: parse error in local policy)
Received: from smtp4.stanford.edu (localhost.localdomain [127.0.0.1])
by localhost (Postfix) with SMTP id 2A16CC963
for l...@virtual.stanford.edu; Wed,  3 Jun 2009 09:47:57 -0700 (PDT)
Received: from zm04.stanford.edu (zm04.Stanford.EDU [171.67.219.154])
by smtp4.stanford.edu (Postfix) with ESMTP id 135F0C4D9
for l...@virtual.stanford.edu; Wed,  3 Jun 2009 09:47:57 -0700 (PDT)
Date: Wed, 3 Jun 2009 09:47:57 -0700 (PDT)
From: Rob Genova rgen...@stanford.edu
To: l...@virtual.stanford.edu
Message-ID: 1786343670.1256501244047677038.javamail.r...@zm04.stanford.edu
Subject: test
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-Originating-IP: [171.66.69.238]
X-Mailer: Zimbra 5.0.15_GA_2851.RHEL4_64 (ZimbraWebClient - FF3.0 
(Win)/5.0.15_GA_2851.RHEL4_64)
X-Authenticated-User: rgen...@stanford.edu


-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] Mailing list for virtual domain

2009-06-03 Thread Rob Genova
No, I am putting the list name in the To field. I also only have three 
recipients and none of them are aliased in any way.


- Original Message -
From: Vidyadhar vidyadha...@gmail.com
To: qmailtoaster-list@qmailtoaster.com
Sent: Wednesday, June 3, 2009 10:40:05 AM GMT -08:00 US/Canada Pacific
Subject: Re: [qmailtoaster] Mailing list for virtual domain

R u adding mailing list email I'd in BCC field
Sent on my BlackBerry® from Vodafone Essar

-Original Message-
From: Rob Genova rgen...@stanford.edu

Date: Wed, 3 Jun 2009 10:36:45 
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] Mailing list for virtual domain

Hi,

I have created a virtual domain and am having trouble getting mailing lists to 
work for it.

Lets say my domain is domain.stanford.edu and my virtual domain is 
virtual.stanford.edu. If I create a mailing list called list, mail to 
l...@domain.stanford.edu succeeds while mail to l...@virtual.stanford.edu 
fails. Any idea how I can correct this? Thanks- Rob

Failure notice:

Hi. This is the qmail-send program at domain.stanford.edu.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

l...@virtual.stanford.edu:
ezmlm-reject: fatal: List address must be in To: or Cc: (#5.7.0)

--- Below this line is a copy of the message.

Return-Path: rgen...@stanford.edu
Received: (qmail 11740 invoked by uid 89); 3 Jun 2009 16:47:57 -
Received: by simscan 1.3.1 ppid: 11732, pid: 11734, t: 0.0614s
 scanners: attach: 1.3.1 clamav: 0.93
/m:46/d:7013 spam: 3.2.4
X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on domain.stanford.edu
X-Spam-Level:
X-Spam-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,RDNS_NONE
autolearn=no version=3.2.4
Received: from unknown (HELO smtp4.stanford.edu) (171.67.219.84)
  by domain.stanford.edu with SMTP; 3 Jun 2009 16:47:57 -
Received-SPF: unknown (domain.stanford.edu: parse error in local policy)
Received: from smtp4.stanford.edu (localhost.localdomain [127.0.0.1])
by localhost (Postfix) with SMTP id 2A16CC963
for l...@virtual.stanford.edu; Wed,  3 Jun 2009 09:47:57 -0700 (PDT)
Received: from zm04.stanford.edu (zm04.Stanford.EDU [171.67.219.154])
by smtp4.stanford.edu (Postfix) with ESMTP id 135F0C4D9
for l...@virtual.stanford.edu; Wed,  3 Jun 2009 09:47:57 -0700 (PDT)
Date: Wed, 3 Jun 2009 09:47:57 -0700 (PDT)
From: Rob Genova rgen...@stanford.edu
To: l...@virtual.stanford.edu
Message-ID: 1786343670.1256501244047677038.javamail.r...@zm04.stanford.edu
Subject: test
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-Originating-IP: [171.66.69.238]
X-Mailer: Zimbra 5.0.15_GA_2851.RHEL4_64 (ZimbraWebClient - FF3.0 
(Win)/5.0.15_GA_2851.RHEL4_64)
X-Authenticated-User: rgen...@stanford.edu


-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-- 
Researcher, Technician and IT Administrator
Department of Global Ecology
Carnegie Institution for Science
260 Panama Street, Stanford, CA 94305 USA
+1-415-596-0834; fax: +1-650-462-5968

-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.

  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




[qmailtoaster] Mailing list server move

2008-12-15 Thread Jake Vickers
As an update, the move did not happen over the weekend.  Erik wants to 
lower the TTL in DNS to lower any downtime, but the change did not 
happen in time for the weekend.  We're hoping to move the list on Tuesday.

Thanks!


-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Mailing List Shortcut

2008-01-29 Thread Ed Morrison

Jake Vickers wrote:

Ed Morrison wrote:

Hi Everyone:

Does anyone have a way to import a couple thousand email addresses 
into a mailing list from a txt file?


Thanks!



Easy enough from the CLI:
http://wiki.qmailtoaster.com/index.php/Bulk_import_emails_into_EzMLM


Awesome.  Thank you Jake!


-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] Mailing List Shortcut

2008-01-29 Thread Jake Vickers

Ed Morrison wrote:

Hi Everyone:

Does anyone have a way to import a couple thousand email addresses 
into a mailing list from a txt file?


Thanks!



Easy enough from the CLI:
http://wiki.qmailtoaster.com/index.php/Bulk_import_emails_into_EzMLM


-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] Mailing List Shortcut

2008-01-29 Thread Ed Morrison

Hi Everyone:

Does anyone have a way to import a couple thousand email addresses into 
a mailing list from a txt file?


Thanks!

Ed

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] Mailing list

2006-07-10 Thread acil
Dear all

i am using Qmail Toaster ver.1.3, is this version equipped with mailing
list, and how to create them. thanks for the help

acil


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [qmailtoaster] Mailing list

2006-07-10 Thread Özgür Kolukısa
Hi,

Qmail toaster comes with ezmlm mailing list manager. You can access it via
qmailadmin web tool.. http://yourserver.com/qmailadmin

Regards

-Original Message-
From: acil [mailto:[EMAIL PROTECTED] 
Sent: 10 Temmuz 2006 Pazartesi 12:05
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] Mailing list

Dear all

i am using Qmail Toaster ver.1.3, is this version equipped with mailing
list, and how to create them. thanks for the help

acil


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] Mailing list

2006-07-10 Thread acil
hi ozgur
thanks for your help.
- Original Message - 
From: Özgür Kolukısa [EMAIL PROTECTED]
To: qmailtoaster-list@qmailtoaster.com
Sent: Monday, July 10, 2006 6:21 PM
Subject: RE: [qmailtoaster] Mailing list


 Hi,

 Qmail toaster comes with ezmlm mailing list manager. You can access it via
 qmailadmin web tool.. http://yourserver.com/qmailadmin

 Regards

 -Original Message-
 From: acil [mailto:[EMAIL PROTECTED]
 Sent: 10 Temmuz 2006 Pazartesi 12:05
 To: qmailtoaster-list@qmailtoaster.com
 Subject: [qmailtoaster] Mailing list

 Dear all

 i am using Qmail Toaster ver.1.3, is this version equipped with mailing
 list, and how to create them. thanks for the help

 acil


 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]





 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]