![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to forward mail in /var/mail/username to external mail | unitipon | SUN Solaris | 2 | 05-26-2008 09:20 PM |
| Problem sending mail to an external domain | voorkey | AIX | 2 | 06-01-2006 08:07 AM |
| Installing External Modem on Unix | trinitygirl71 | UNIX for Dummies Questions & Answers | 3 | 08-25-2005 01:13 PM |
| Adding a New IP Addresses to a SCO Unix Box | dman110168 | IP Networking | 1 | 02-17-2002 10:57 AM |
| unix and websites | bhjunx | IP Networking | 2 | 07-13-2001 01:48 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
unix-mail to external websites/addresses
Hi all,
I would like to know if I can send unix mail to 'external email addresses'. My unix server is leo@ABCcompany.com. I am able to send emails to firstname.lastname@ABCcompany.com. But, we have some email addresses in our team on our parent company's server - ex: firstname.lastname@ParentCompany.com. The emails to these folks are not going through. I was wondering two things 1) can we send emails to external addresses? 2) If so, do you think I have to contact my network adminstrator so that he can change the permissions/settings so that I could send emails externally. I have also tried sending a test email to my personal account on @yahoo.com and that email did not go through. Please help. Thank you in advance. |
| Forum Sponsor | ||
|
|
|
#3
|
|||
|
|||
|
In general you should be able to send a message to any server that accepts the incoming connection. You can see that it's working for local servers. Configuration issues at either server or in between can prevent the successful delivery of your message.
For example, if your unix server isn't in DNS and the ParentCompany server will only accept e-mail from DNS resolvable systems, your incoming connection will not be accepted. Many viruses set up a mini smtp server on the Windows workstation which churns out spam/virus e-mails. I've configured our network to refuse to allow port 25 connections from any workstation not specifically configured as a mail transfer agent. You can test these by attempting a connection manually Code:
$ telnet parentcompany.com 25 Code:
$ telnet parentcompany.com 25 220 mail.parentcompany.com ESMTP Postfix HELO abccompany.com 250 Hello abccompany.com MAIL FROM: <joy.k@abccompany.com> 250 Ok RCPT TO: <my.friend@parentcompany.com> 250 Ok DATA 354 End data with <CR><LF>.<CR><LF> Subject: Example Message From: joy.k@abccompany.com To: my.friend@parentcompany.com Yo, Sending a test message. Later, Joy . 250 Ok: queued as 45334 QUIT 221 Bye You should get either something like the above session, or you might receive an error. In both of these situations, the best way to resolve this is to configure your server to route e-mail through your local MTA and let it deliver e-mail. You'll have to check your e-mail server's configuration to see what the options are to make this setting. Carl |
|||
| Google The UNIX and Linux Forums |