How to change e-mail adress of the mailserver

We have a domino server with a few domains. The main domain is Demo.nl. When a agents on the server sends mail to the internet, the senders email-adress of the server is very long :

DEMO-SVR/Demo.Demo@Demo.nl.

I want to change this in info@Demo.nl. Where must i change this in the configuration ?

thanks,

Greetings Helga

Subject: how to change e-mail adress of the mailserver

Hi Helga,

I took this text form another post of mine, but I think it will show you, what you have to do.

When you want to support both Notes-mail and Web-mail you have to fill in the following MIME-headers:

Set memodoc = maildb.CreateDocument

Set memo = memodoc.CreateMIMEEntity

Set header = memo.CreateHeader(“From”)

Call header.SetHeaderVal(“The Acme”)

Set header = memo.CreateHeader(“Reply-To”)

Call header.SetHeaderVal(“info@acme.com”)

Set header = memo.CreateHeader(“INetFrom”)

Call header.SetHeaderVal(“The Acme info@acme.com”)

Now both types of receivers will see an acceptable header of the message.

HTH