|
5 registered users in last 24 hours Configure a Mail/SMTP ServerDifficulties to send out email from ]project-open[? Basically, mail sending is handled by the ]po[ aolserver web/application server. General Email ConfigurationThe /web/projop/etc/config.tcl configuration file (Windows: C:\project-open\servers\projop\etc\config.tcl) contains a "mailhost" parameter which is by default set to localhost (127.0.0.1), assuming that the server running ]po[ is also running a SMTP (mail) server: ns_section ns/parameters ns_param mailhost localhost By changing this parameter you can tell AOLserver to use an SMTP server running on a different server. However, this SMTP server needs to be configured to accept email coming from the ]po[ server, which is not the default. The default configuration of an SMTP server is to accept connections only from the local computer and not to allow "forwarding" of mails. To diagnose issues with a locally installed SMTP server (installed and pre-configured in the ]po[ VMware installer for example) please perform as root "tail -f /var/log/maillog".
To diagnose issues with mail please perform "tail -f ~projop/log/error.log" and search for lines containing "sendmail" or "mail". Postfix: Configure relayReference:See article on HowToForge postconf -e 'relayhost = mail.example.com' postconf -e 'smtp_sasl_auth_enable = yes' postconf -e 'smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd' postconf -e 'smtp_sasl_security_options =' echo "smtp.example.com user_name:password" > /etc/postfix/sasl_passwd chown root:root /etc/postfix/sasl_passwd chmod 600 /etc/postfix/sasl_passwd postmap /etc/postfix/sasl_passwd /etc/init.d/postfix restart Specific Issues with WindowsPlease see the SourceForge forum: http://sourceforge.net/projects/project-open/forums/forum/295937/topic/3533752 . Specific Issues with Ubuntu
|
