- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- How to configure POP
Operating System - Linux
1821051
Members
2863
Online
109631
Solutions
Forums
Categories
Company
Local Language
юдл
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
юдл
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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-13-2003 11:37 PM
тАО08-13-2003 11:37 PM
I am presently creating a mail server. I am able to successfully configure sendmail, my main problem now is that I cannot receive mail. I am suppose to install the pop services but I do not know how. Can anyone help me. I have already installed imap-2001a-18 as instructed. By the way I am using Redhat 9.0.
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2003 12:19 AM
тАО08-14-2003 12:19 AM
Solution
to enable the pop you must issue the following command:
chkconfig ipop3 on
as for receiving e-mail
1.see that you mail daemon is listening on relevant IP address (not just 127.0.0.1).
/etc/mail/sendmail.cf
2.Check that all your machine names appear in the file
/etc/mail/local-host-names
3.if you added reject rules to /etc/mail/access - remove them
4.restart the service
chkconfig ipop3 on
as for receiving e-mail
1.see that you mail daemon is listening on relevant IP address (not just 127.0.0.1).
/etc/mail/sendmail.cf
2.Check that all your machine names appear in the file
/etc/mail/local-host-names
3.if you added reject rules to /etc/mail/access - remove them
4.restart the service
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2003 01:23 AM
тАО08-14-2003 01:23 AM
Re: How to configure POP
Thanks. I is now working. My main problem now is how do I create more users. Do I have to create a user in the system one by one or is there an easier way to manage the creation of new accounts. Is sendmail the best program for this purpose? I read some articles that is has a lot of security holes. Why do I get a "sender address rejected error message" in sendmail. By the way is xinetd the same as inetd?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2003 02:24 AM
тАО08-14-2003 02:24 AM
Re: How to configure POP
1.xinetd is a secure replacement for inetd
2. There are security holes in every product-you've got to stay tuned with redhat and to install all updates.
3. There are many programs for e-mail.We use trendmicro's mail server on linux.Neverless I think that sendmail is great -don't forget it's free.
4.where do you get the error message "sender address rejected error message"-be more specific please+ I recommend you to issue a new call for help.
5. You can use script to create users.Let's say you want to create 10 users.
run this script
#!/bin/bash
for i in `seq 1 10`
do useradd user$i
done
6. you also have to provide them passwords
#!/bin/bash
for i in `seq 1 10`
do echo password$i |passwd --stdin user$i
done
2. There are security holes in every product-you've got to stay tuned with redhat and to install all updates.
3. There are many programs for e-mail.We use trendmicro's mail server on linux.Neverless I think that sendmail is great -don't forget it's free.
4.where do you get the error message "sender address rejected error message"-be more specific please+ I recommend you to issue a new call for help.
5. You can use script to create users.Let's say you want to create 10 users.
run this script
#!/bin/bash
for i in `seq 1 10`
do useradd user$i
done
6. you also have to provide them passwords
#!/bin/bash
for i in `seq 1 10`
do echo password$i |passwd --stdin user$i
done
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP