Gustaf,
Thank you very much.
I was making simple mistakes. Example. I kept using port 25 as this was the default in the config file and in the ACS Mail Services Lite. I did not realize when you used port 2525, you met port 2525, not port 25. My misunderstanding.
Here is my summary. I hope this can help others.
Configuration to redirect emails to an external email server
- $smtpdport must be 2525
- ns_param address must be 127.0.0.1
- IDs using @ must be replace with %40
Do NOT use [SquareBrackets] in your password. see Square Bracket Note below
GUI Changes ACS Mail Services Lite
- Section Rollout Support field EmailDeliveryMode must be nssmtpd
- Section Smpt field SMTPPort must be 2525
- Leave all other default field values "as is".
Square Bracket Note:
- A square bracket that is escaped with a \ is considered as a literal square bracket.
- A square bracket within braces is not modified during the substitution phase.
TCL code below is valid. However, since NaviServer uses { } the square brackets are not modified.
- set d [subst -nocom -noback {88(pass)[word]+}]
- set d "88(pass)[word]+"
Example:
ns_section "ns/server/${server}/module/nssmtpd" {
ns_param port $smtpdport
ns_param address 127.0.0.1
ns_param relay plain://Username%40Hostname.com:PwdWithNO[SquareBrackets]@smtp.hostname.com:587
....
Note: There should be no space between the @ and smtp.hostname.com:587
Thank you again for all the help. I hope someday I can return the favor.