| Summary: | Is it still possible to send mail from *.eclipse.org vservers? | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Community | Reporter: | Nick Boldt <nboldt> | ||||
| Component: | Assignee: | Eclipse Webmaster <webmaster> | |||||
| Status: | RESOLVED FIXED | QA Contact: | |||||
| Severity: | minor | ||||||
| Priority: | P3 | ||||||
| Version: | unspecified | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Bug Depends on: | |||||||
| Bug Blocks: | 208122, 210396 | ||||||
| Attachments: |
|
||||||
|
Description
Nick Boldt
Created attachment 85256 [details]
console output showing problems sending mail from emft.eclipse.org
Mail is a really nasty thing, and one faux-pas can lead us to being added to SPAM blacklists and getting nasty hatemail from people. Your idea to relay through mail.eclipse.org is a good one; however, as the vservers are on a separate subnet, I'll need to add it to our Postfix conf. I'll test the new setting today, so by the days end you should be able to relay through mail.eclipse.org. (In reply to comment #2) > Mail is a really nasty thing, and one faux-pas can lead us to being added to > SPAM blacklists and getting nasty hatemail from people. > > Your idea to relay through mail.eclipse.org is a good one; however, as the > vservers are on a separate subnet, I'll need to add it to our Postfix conf. > > I'll test the new setting today, so by the days end you should be able to relay > through mail.eclipse.org. So then the implementation here is to use netcat to open port 25 and relay directly to mail.eclipse.org? I suppose I could also use php to open a socket and send that way [1]. [1]http://www.php.net/manual/en/ref.mail.php#75708 Is there any extra security you want me to use? TLS? non-standard port? auth login? > So then the implementation here is to use netcat to open port 25 and relay
> directly to mail.eclipse.org?
Gawds no. Just tell your MTA to use mail.eclipse.org as a relay host. If you're using Postfix, it's .. relayhost=mail.eclipse.org. If you're using sendmail, well, you likely have bigger problems :)
(In reply to comment #4) > > So then the implementation here is to use netcat to open port 25 and relay > > directly to mail.eclipse.org? > > Gawds no. Just tell your MTA to use mail.eclipse.org as a relay host. If > you're using Postfix, it's .. relayhost=mail.eclipse.org. If you're using > sendmail, well, you likely have bigger problems :) > Success! 1. edit /etc/mail/sendmail.cf # "Smart" relay host (may be null) DSmail.eclipse.org 2. restart sendmail 3. test w/ /usr/sbin/sendmail -t -v ... message received. |