- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- How to relay email on a DSL DHCP connection to my ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-21-2004 02:43 PM
тАО06-21-2004 02:43 PM
How to relay email on a DSL DHCP connection to my Sendmail server?
How can I configure my sendmail to relay a changing DHCP address on the fly? I don't want to open my server up to the world for relaying....
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-21-2004 04:16 PM
тАО06-21-2004 04:16 PM
Re: How to relay email on a DSL DHCP connection to my Sendmail server?
Or you're wanting to change the access file on a remote server as your local address is the one that changes?
(Sorry, I'm not sure which end is which here).
If the machine with the DHCP-assigned address is the one that needs to have the file changed, it should be relativly simple. Periodically check the address (ip addr list eth0 | awk '/inet/ {print substr($2,0,index($2,"/")-1)}'), and seeing if it's in the '/etc/mail/access' file. If you dump the current one to a temporary file, you'll know which one to remove when the time comes ripe... then just re-make the db.
If it's on a remote-machine that you're wanting to alter.. Does it accept mail to it's self when it's in the broken state?
Or possibly change it from IP based relaying to user-authenticated-based relaying, using 'smtp+auth' stuff.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-21-2004 11:46 PM
тАО06-21-2004 11:46 PM
Re: How to relay email on a DSL DHCP connection to my Sendmail server?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-22-2004 12:36 AM
тАО06-22-2004 12:36 AM
Re: How to relay email on a DSL DHCP connection to my Sendmail server?
I've heard of 'smtp+auth' - no idea how to implement - sounds like that may be the way to go....
Vernon - I don't want to allow anyone that receives an ip address from my local ISP the the ability to relay - so the range method is not an option.
Thanks...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-22-2004 04:40 AM
тАО06-22-2004 04:40 AM
Re: How to relay email on a DSL DHCP connection to my Sendmail server?
The problem you have is that your provider doesn't want you running ANY servers on the DSL. Its probably a violation of your terms of service.
Couple of options: speakeasy.net has plans as low as $75 a month that give you a fixed IP address and they don't care if you relay or not.
I have a backup web server sitting at a friends DHCP DSL. I have a DNS record that is rebuilt every day based on and email from that server. If the IP address has changed, the DNS record gets rebuilt.
This has allowed me to briefly fail over web and mail services to a DHCP system.
Practically speaking I really think you need a fixed IP address. I would not run a business email system in a DHCP system more than the few hours it takes to get a problem resolved.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-22-2004 05:54 AM
тАО06-22-2004 05:54 AM
Re: How to relay email on a DSL DHCP connection to my Sendmail server?
Actually, my server has a fixed ip addy - it's my home network that is DHCP.
My server is at another ISP - far away from my home.
I have found a workaround - I have pointed my email client to use my home's ISP's smtp server for outgoing email...and my server for incoming pop....
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-22-2004 06:13 AM
тАО06-22-2004 06:13 AM
Re: How to relay email on a DSL DHCP connection to my Sendmail server?
That is exactly what I did before I became an ISP and no longer needed to do that.
Your solution is solid and will work perfectly.
Congrats.
0 Points please.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-09-2004 01:04 AM
тАО07-09-2004 01:04 AM
Re: How to relay email on a DSL DHCP connection to my Sendmail server?
Postfix supports SMTP AUTH for clients, which may be an option.