From fa3b1a63fa4a99b2bef5ef78424c3b57b3339528 Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Thu, 3 Aug 2017 16:58:59 +0200 Subject: [PATCH] roundcube is now using %u and %p as login and password for SMTP --- roundcube/templates/roundcube/main.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roundcube/templates/roundcube/main.inc.php b/roundcube/templates/roundcube/main.inc.php index 6d06dc74..97c9f6bf 100644 --- a/roundcube/templates/roundcube/main.inc.php +++ b/roundcube/templates/roundcube/main.inc.php @@ -147,11 +147,11 @@ $rcmail_config['smtp_port'] = 25; // SMTP username (if required) if you use %u as the username Roundcube // will use the current username for login -$rcmail_config['smtp_user'] = ''; +$rcmail_config['smtp_user'] = '%u'; // SMTP password (if required) if you use %p as the password Roundcube // will use the current user's password for login -$rcmail_config['smtp_pass'] = ''; +$rcmail_config['smtp_pass'] = '%p'; // SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use // best server supported one)