1 2 3 4 5 6 7 8 9 10 |
Aug 7 09:21:18 FauziNux postfix/pickup[23849]: 8E270B81F09: uid=33 from=<www-data> Aug 7 09:21:18 FauziNux postfix/cleanup[9260]: 8E270B81F09: message-id=<20180807022118.8E270B81F09@myclient.co.id> Aug 7 09:21:18 FauziNux postfix/qmgr[955]: 8E270B81F09: from=<www-data@myclient.co.id>, size=2403435, nrcpt=1 (queue active) Aug 7 09:21:20 FauziNux postfix/smtp[9262]: 8E270B81F09: to=<myuser@myclient.co.id>, relay=mail.myclient.co.id[202.152.1.190]:25, delay=2.3, delays=0.03/0/0.01/2.2, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as E9960ACA08_B690223F) Aug 7 09:21:20 FauziNux postfix/qmgr[955]: 8E270B81F09: removed Aug 7 09:22:27 FauziNux postfix/pickup[23849]: E0121B81E0A: uid=33 from=<www-data> Aug 7 09:22:27 FauziNux postfix/cleanup[9260]: E0121B81E0A: message-id=<20180807022227.E0121B81E0A@myclient.co.id> Aug 7 09:22:27 FauziNux postfix/qmgr[955]: E0121B81E0A: from=<www-data@myclient.co.id>, size=2403443, nrcpt=1 (queue active) Aug 7 09:22:29 FauziNux postfix/smtp[9262]: E0121B81E0A: to=<myuser@myclient.co.id>, relay=mail.myclient.co.id[202.152.1.190]:25, delay=1.9, delays=0.03/0/0/1.8, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 47131AC9FE_B690269F) Aug 7 09:22:29 FauziNux postfix/qmgr[955]: E0121B81E0A: removed |
1 2 3 4 5 6 7 8 9 |
$headers .= 'X-Mailer: PHP/' . phpversion(); $headers .= "X-Priority: 1\n"; // Urgent message! $headers .= "Return-Path: " . $loadConfig['smtp_user'] . "\n"; // Return path for errors $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/html; charset=iso-8859-1\n"; return $headers; |
1 2 3 4 |
# Are users allowed to set their own From: address? # YES - Allow the user to specify their own From: address # NO - Use the system generated From: address FromLineOverride=NO |
1 2 3 4 |
# Are users allowed to set their own From: address? # YES - Allow the user to specify their own From: address # NO - Use the system generated From: address FromLineOverride=YES |