|
Blue Forest http://www.lslnet.com at 12:08 on July 28, 2006
Maildrop problems, experts invited to . Qmail documentation :
| /usr/local/bin/maildrop. /maifilter
| /usr/local/bin/sendsms (SMS reminded procedure)
. Mailfilter documents :
If ((/^FROM :. *hello@domains.com>;/))
{
To '/home/vpopmail/domains/zmail.ctf.com.cn/333/Maildir/.Trash/. '
Exit
}
To '/home/vpopmail/domains/zmail.ctf.com.cn/333/Maildir/. '
Under such circumstances, hello@domains.com mail sent to the address were sent to the bins, but also received a text message reminding. If I want to remind Message received, is. End maildrop stop after running qmail document, should no longer sendsms how to set up operations.
I used to use the correct exitcode. Mailfilter following documents :
If ((/^FROM :. *hello@domains.com>;/))
{
EXITCODE=77
To '/home/vpopmail/domains/zmail.ctf.com.cn/333/Maildir/.Trash/. '
Exit
}
To '/home/vpopmail/domains/zmail.ctf.com.cn/333/Maildir/. '
SMS receive, but will immediately retire hello@domains.com letter. This does not meet the requirement.
Use the following. Mailfilter documents :
If ((/^FROM :. *hello@domains.com>;/))
{
EXITCODE=99
To '/home/vpopmail/domains/zmail.ctf.com.cn/333/Maildir/.Trash/. '
Exit
}
To '/home/vpopmail/domains/zmail.ctf.com.cn/333/Maildir/. '
Receive messages, but he has left behind a letter in the mail queue. Do not meet the requirements.
Do not know no other way, experts urged. . |
Maildrop problems, experts invited to Up |
Maildrop problems, experts invited to Up! ! Help us to see! ! |
Maildrop problems, experts invited to This /usr/local/bin/sendsms (SMS reminded procedures) do not write. Qmail documents inside, have deployed it wrote. Mailfilter inside, and then had to be a judge!
Judgment are (relatively simple way, the wrong please)
If (have to meet the requirements mail)
{
/usr/local/bin/sendsms (SMS reminded procedure)
}
If (/^X-Spam-Flag : *YES/)
{
To "designated bins"
}
Else
{
To "user's directory. "
}
I do not know where this is not you have to meet the requirements. |
Maildrop problems, experts invited to In this way I can not quite appropriate procedures, it would be best to use maildrop from the return code or code! |
| |