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
08-23-2004 04:21 AM
08-23-2004 04:21 AM
Sendmail
Could you some one help me how to restrict the sending the SMTP mails through sendmail using the /etc/aliases database.i'll be apprecite for your prompt reponse
Regards,
kumar umar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 06:13 AM
08-23-2004 06:13 AM
Re: Sendmail
You can check this link:
http://www.unet.univie.ac.at/aix/files/aixfiles/aliases.htm
More info on sendmail configs:
http://www.uwsg.iu.edu/usail/mail/op/op.html
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 11:24 AM
08-23-2004 11:24 AM
Re: Sendmail
What sort of things are you wanting to restrict? the source of the message? The destination? The user sending?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 08:02 PM
08-23-2004 08:02 PM
Re: Sendmail
Nice to see your reply .I want keep restriction on user sending SMTP mails .Please sugest .
Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2004 02:36 AM
08-24-2004 02:36 AM
Re: Sendmail
http://popbsmtp.sourceforge.net/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2004 03:33 AM
08-24-2004 03:33 AM
Re: Sendmail
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2004 03:46 PM
08-24-2004 03:46 PM
Re: Sendmail
From the description, you only want certain 'users' to be able to relay?
Two options, one easier than the other.
If a given 'user' is always at a given terminal (PC), then using '/etc/mail/access' and allowing certain IP's to 'relay' (instead of the entire subnet) will
give you this.
If the users roam around, then you need to set up 'SMTP Auth', and have those users authenticate against the SMTP server first, before being able to
send/relay messages out.
The sendmail FAQ has details on setting SMTP Auth up.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 08:26 AM
08-26-2004 08:26 AM
Re: Sendmail
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 06:56 PM
08-26-2004 06:56 PM
Re: Sendmail
#####-----------------------
# SAMPLE OF /etc/mail/access
#####-----------------------
localhost.localdomain RELAY
localhost RELAY
127.0.0.1 RELAY
spammer@aol.com REJECT
192.168.1 RELAY
==============================
After modifying access text file, you have to create database map with command: makemap hash /etc/mail/access.db < /etc/mail/access
or chk
http://www.faqs.org/docs/securing/chap22sec178.html
for full details.
Hope this will help