-
as seen on Server Fault
- Search for 'Server Fault'
I'm trying to get incoming e-mail to automatically go directly into whichever queue/ticket they are related to or create a new one if none exist and the right queue e-mail setup in the web interface is used.
I will have too many queues to have two line items within mailgate per queue.
A similar…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I'm not an expert at procmail, but I have this code:
DROPPRIVS=yes
DEFAULT=$HOME/Maildir/
:0
* ? /usr/bin/test -d $DEFAULT || /bin/mkdir $DEFAULT
{ }
:0 E
{
# Bail out if directory could not be created
EXITCODE=127
HOST=bail.out
}
MAILDIR=$HOME/Maildir/
But, when the…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I'm looking for suggestions on mailing list software to use on an existing server running Postfix/Procmail. Something relatively simple.
requirements:
1 list, < 50 subscribers
list members dumped in a certain file by a script (being pulled from LDAP or MySQL on another box)
Handles MIME, images…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I have this code in /etc/procmailrc:
DROPPRIVS=yes
DEFAULT=$HOME/Maildir/
:0
* ? /usr/bin/test -d $DEFAULT || /bin/mkdir $DEFAULT
{ }
:0 E
{
# Bail out if directory could not be created
EXITCODE=127
HOST=bail.out
}
MAILDIR=$HOME/Maildir/
But, when the directory already…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
This seems like it should be fairly easy to do, but I've run into a few problems.
I've added a cron job to parse all users whose UID is greater than 5000:
* * * * * root /usr/bin/test /etc/passwd -nt ~allusers/.forward \
&& /bin/egrep '([5-9]|[0-9]{2})[0-9]{3}' /etc/passwd | /bin/grep…
>>> More