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
12-29-2003 02:29 AM
12-29-2003 02:29 AM
mailx
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2003 03:00 AM
12-29-2003 03:00 AM
Re: mailx
That is from command line.
for making permanent changes. Check sendmail.cf. you will have to change DM macro.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2003 04:41 AM
12-29-2003 04:41 AM
Re: mailx
a. Site hiding is the ability to send emails with no "hostname" in the
outgoing email address:
user@domain.com
rather than:
user@host.domain.com
b. cp sendmail.cf sendmail.cf.old
vi sendmail.cf
Set:
DMdomain.com
Unset:
CE root
5. Stop/Start sendmail:
# /sbin/init.d/sendmail stop; /sbin/init.d/sendmail start
Sendmail pid is 6743
Killing sendmail...
Sendmail killed.
/etc/mail/aliases: 13 aliases, longest 35 bytes, 307 bytes total
sendmail
6. Clean out the old "mail.log":
o Mail log info goes in:
/var/adm/syslog/mail.log
o Clean it out:
cd /var/adm/syslog # move old logs
mv mail.log mail.log.old
mv syslog.log sylog.log.old
cd /sbin/init.d # restart syslog daemon
./syslogd stop; ./syslogd start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2003 06:33 AM
12-29-2003 06:33 AM
Re: mailx
It comes from DOC 1200503211 and I found it quite handy for when reports are emailed..but the user wants to send the report back to the developer and tell them there's a problem. We created a mail account in GroupWise for the return mail, and used this 'flip' of the address in the userdb file. It worked well for us.
Here's how it goes:
1. Create the file /etc/mail/userdb that contains two
entries for user "adm" on the system. The entries
should be in the following format:
adm:mailname
2. Build the /etc/mail/userdb.db file with the makemap
routine:
makemap btree /etc/mail/userdb.db < /etc/mail/userdb
3. Uncomment the following line in the /etc/mail/sendmail.cf
file:
UserDatabaseSpec=/etc/mail/userdb.db
4. To change the "@host.domain" part, use masquerading and
edit the /etc/mail/sendmail.cf file to add a valid domain
after DM: DMhp.com
5. Restart sendmail:
/sbin/init.d/sendmail stop
/sbin/init.d/sendmail start
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2003 07:05 AM
12-29-2003 07:05 AM
Re: mailx
Please, send the DOC 1200503211