- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: I need tips to admin a mail server .. sendmail
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-26-2001 08:44 AM
08-26-2001 08:44 AM
I am in need of some tips on how to admin a sendmail server. Here are the details we are running Sendmail 8.8.6 (PHNE_17190).All the mail is in /var/mail/ it is it sits on /dev/vg01/lvol1. We have 7920 files in the /var/mail directory witch means we have about 7920 email accounts and growing. This is a for a service that we offer the public. Now I need some tips to admin this mail server. Here are some questions.
1.how to restrict the mail box directory to a max size? So their emails files to grow to big
2.how to configure sendmail so it does not keep email after they've been downloaded.
3.How many users can a sendmail server handle?
4.any tips to admin my mail server. what to look for in mailq and so on.
thanks
Richard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2001 09:40 AM
08-26-2001 09:40 AM
SolutionThis should answer most of your questions.
http://www.sendmail.org/~ca/email/lfaq.html
This link gives lots of other information
http://www.sendmail.org/~ca/email/misc.html
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2001 10:05 AM
08-26-2001 10:05 AM
Re: I need tips to admin a mail server .. sendmail
I am not sure if sendmail can provide you with these features. As work around, I will write my own scripts to acccomplish what you need.
1. I would turn on Quotas on the file system first. For ex., I will turn on a max of 5 MB for each user. However, I will write a script to check if a particular mailbox is more than 4MB and then send a mail automatically to the
user. If the user ignores the warning message, he will not get any more messages after 5 MB.
#You need to modify and elaborate this script.
cd /var/mail
for MBOX in `ls`
do
SIZE=`du -sk $MBOX |awk '{print $2}'`
if [ $SIZE -ge 4000 ]
then
echo "Your Limit Reached" |mailx -s "From Sys Admin" $MBOX
fi
done
2. This is really dependent on how the user accesses the mail. POP/IMAPcan be used but we need to configure it at the client side to delete the messages once read. I am not sure if we can recompile popper to make this feature default.
There are other free mail packages available at this location
http://hpux.cs.utah.edu/hppd/hpux/Networking/Mail/alpha.html
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2001 10:56 AM
08-26-2001 10:56 AM
Re: I need tips to admin a mail server .. sendmail
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2001 02:06 PM
08-27-2001 02:06 PM
Re: I need tips to admin a mail server .. sendmail
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 04:35 AM
08-28-2001 04:35 AM
Re: I need tips to admin a mail server .. sendmail
It's faster, more secure and easier to administer.
You're questions are not totally sendmail related: What you need is a POP/IMAP server, not only sendmail!
I recommend courier-IMAP & Postfix as combo. They kick ass.