1753785 Members
7658 Online
108799 Solutions
New Discussion юеВ

Mail reply address

 
SOLVED
Go to solution
Wim Van den Wyngaert
Honored Contributor

Mail reply address

I am sending mail from VMS to the outer world using the SYSTEM account.

However, I would like that all replies and problem announcing mails (such as rejected because...) go back to my personal mail address (xxx@ing.be).

Is that possible ? Without receiving/forwarding something on VMS ?

Wim
Wim
5 REPLIES 5
Steven Schweda
Honored Contributor

Re: Mail reply address

Logical name: TCPIP$SMTP_FROM
(Also: TCPIP$SMTP_PROHIBIT_USER_HEADERS)

http://h71000.www7.hp.com/doc/732final/6526/6526pro_039.html

Kris Clippeleyr
Honored Contributor
Solution

Re: Mail reply address

Wim,

Do a
DEFINE TCPIP$SMTP_FROM "xxx@ing.be"
before sending mail from VMS.

Regards
Kris (aka Qkcl)
I'm gonna hit the highway like a battering ram on a silver-black phantom bike...
Wim Van den Wyngaert
Honored Contributor

Re: Mail reply address

Nice ! It works. I can even send mail in the name of my boss (anything in the from).

Thx

Wim
Wim
Steven Schweda
Honored Contributor

Re: Mail reply address

> [...] I can even send mail in the name of
> my boss [...]

Which is why TCPIP$SMTP_PROHIBIT_USER_HEADERS
exists.
Robert Atkinson
Respected Contributor

Re: Mail reply address

Wilm, you can also supply the Human Readable format as well, e.g. :-

$ DEFINE TCPIP$SMTP_FROM "helpdesk@xxxxxx.co.uk (IT Helpdesk Team)"
$ DEASS TCPIP$SMTP_FROM

Rob.