Hi all,
I have been trying to experiment various settings for a basic working config.php file that would probably not throw any issues (in logs) and possibly reaching the users mailbox atleast (even if it is spam box). So here are 2 scenarios.
-
the config.php setting
-
remote processing using plesk panel on a windows server
-
the config.php setting (can this be tweaked for better results)
$database_host = âlocalhostâ;
$database_name = âdb_nameâ;
$database_user = âdb_userâ;
$database_password = âpwâ;
define (âTESTâ,0);
$message_envelope = âbounces@domain.extâ;
$bounce_protocol = âpopâ;
define (âMANUALLY_PROCESS_BOUNCESâ,0);
$bounce_mailbox_host = âmail.domain.extâ;
$bounce_mailbox_user = âbounces@domain.extâ;
$bounce_mailbox_password = âpwâ;
$bounce_mailbox_port = â110/pop3/notlsâ;
$bounce_mailbox = â/var/mail/listbouncesâ;
$bounce_mailbox_purge = 1;
$bounce_mailbox_purge_unprocessed = 1;
$bounce_unsubscribe_threshold = 1;
define (âHASH_ALGOâ, âsha256â);
define (âPHPMAILERHOSTâ,âmail.domain.extâ);
$phpmailer_smtpuser = âmailer@domain.extâ;
$phpmailer_smtppassword = âpwâ;
define(âPHPMAILERPORTâ,25);
define (âMAILQUEUE_BATCH_SIZEâ,3600);
define (âMAILQUEUE_BATCH_PERIODâ,3600);
define(âMAILQUEUE_THROTTLEâ,â2â);
define (âALWAYS_ADD_USERTRACKâ, 1);
define (âEMAILTEXTCREDITSâ, 1);
$pageroot = â/.â;
define(âSEND_QUEUE_PROCESSING_REPORTâ, 0);
define (âMANUALLY_PROCESS_QUEUEâ,0);
define(âPHPMAILER_SMTP_DEBUGâ, 3);
define(âSMTP_TIMEOUTâ,30);
define(âTESTâ, 0);
$phpmailer_smtpoptions = array (
âsslâ => array(
âverify_peerâ => false,
âverify_peer_nameâ => false,
âallow_self_signedâ => true
)
);
- remote processing using plesk panel on a windows server
method a) D:\PS_Scripts\phplist-batch.bat (scheduled hourly at 00:30 mins, which seems to be âprobablyâ working at times
method b) http://domain.ext/admin/?page=processqueue&secret=47bb219beeb06b0c (wanting to try this too if this could give better performance!!)