|
I am not able to send email notification when the domain is different in --from and --to.
for example:
Example script(not working):
svnnotify --repos-path "$1" --revision "$2" --to mailinglist@somewhere.com \ -f user@anotherplace.com --smtp list.mailser.com
however the following works..
Example script (working):
svnnotify --repos-path "$1" --revision "$2" --to mailinglist@somewhere.com \ -f user@somewhere.com --smtp list.mailser.com
any idea on how to resolve this?
|