LetoDMS Community Forum
SMTP settings - Printable Version

+- LetoDMS Community Forum (https://community.letodms.com)
+-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4)
+--- Forum: Feature Request (https://community.letodms.com/forumdisplay.php?fid=7)
+--- Thread: SMTP settings (/showthread.php?tid=302)



SMTP settings - hman - 04-21-2011

Hi all,
i would like to change SMTP settings (host, port, username, password) from config file or web form.

Bye
Armando


RE: SMTP settings - Doudoux - 04-21-2011

Hi

Change settings in php.ini file or add these lines in letodms settings file:
PHP Code:
ini_set('sendmail_from''xxx@xxxx.xxx');
ini_set('SMTP''xxxx');
ini_set('smtp_port''25'); 


Doudoux


RE: SMTP settings - hman - 04-22-2011

(04-21-2011, 09:46 PM)Doudoux Wrote:
PHP Code:
ini_set('sendmail_from''xxx@xxxx.xxx');
ini_set('SMTP''xxxx');
ini_set('smtp_port''25'); 
Many thanks, could i also use ini_set to set username and password for smtp authentication ?



RE: SMTP settings - Doudoux - 04-22-2011


I do not think this is possible without modifying the code, try this
http://www.karakas-online.de/forum/viewtopic.php?t=3672

doudoux