- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Specify reply address using "mail"
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
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
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
09-08-2005 04:33 PM
09-08-2005 04:33 PM
Specify reply address using "mail"
I am trying to figure out a way of specifying a reply-to address while using "mail" command on linux. Although the "mailx" package is installed on my RH linux system, there is no corresponding "mailx" utility like HP-UX
Any thoughts ? (other than using "sendmail or mutt or pine ?)
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2005 04:40 PM
09-08-2005 04:40 PM
Re: Specify reply address using "mail"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2005 07:40 PM
09-08-2005 07:40 PM
Re: Specify reply address using "mail"
Each message would need to have a separate return address depending on the application functionality. Again, this is not just on one box, so installing and maintaining custom mail applications is out of question. It is never an issue on HP-UX or Solaris since they have both "mailx" in addition to "mail".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 03:32 AM
09-12-2005 03:32 AM
Re: Specify reply address using "mail"
There is the mailx utility on HP-UX. See man mailx. It's located at /usr/bin/mailx.
Regards,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 03:49 AM
09-12-2005 03:49 AM
Re: Specify reply address using "mail"
mail -s "my subject" you@yourdomain.com
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 04:01 AM
09-12-2005 04:01 AM
Re: Specify reply address using "mail"
Check out the web site
http://www.sendmail.org/virtual-hosting.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 05:55 AM
09-12-2005 05:55 AM
Re: Specify reply address using "mail"
Reply-To: user@domain.com
followed by a blank line,
you will set the return address of the email to user@domain.com address. So people who hit the reply button, will send an email to this address not the original sender address.
hope it helps
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 08:41 AM
09-12-2005 08:41 AM
Re: Specify reply address using "mail"
It works well for me.
-Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 09:54 AM
09-12-2005 09:54 AM
Re: Specify reply address using "mail"
Using "sendmail" seems to be the only option for setting a return address and I was hoping to avoid that since it involves changes to too many scripts and "sendmail" is not client friendly. The other option is to use perl's sendeasy and smtp modules which also involves lot of changes to our HP-Ux scripts that use mailx.
Thanks
-Krishnan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 09:56 AM
09-12-2005 09:56 AM
Re: Specify reply address using "mail"
Thanks!