Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook and Postfix 1

Status
Not open for further replies.

Kjasa

IS-IT--Management
Oct 2, 2002
8
US
Hello,

Do I need to setup a pop3 server in order to have an Outlook client just send to Postfix?

As you can tell I am very new to Postfix and I am getting bogged down trying to get Qpopper configured on top of it.

Thanks
 
Yes, Postfix is only an MTA. If you want POP or IMAP, you need to install a separate daemon, like qpopper.

Here's some notes on qpopper that I wrote awhile back...




Installing qpopper

tar zxvf qpopper4.0.4.tar.gz -C /usr/local/src
cd qpopper4.0.4
./configure --enable-specialauth
# specialauth enables shadow passwords.
make
# copy the popper executable anywhere you want, below is the default
cp popper/popper /usr/sbin/
chmod 700 /usr/sbin/popper

# optional…
make clean
make realclean



Configuring qpopper to use xinetd

Create the /etc/xinetd.d/popper file and put this in it…

service pop3
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/popper
log_on_failure += USERID
}

…and remember to restart xinetd with "/sbin/service xinetd restart"




ChrisP
 
It has taken me awhile to realize that inetd was not on the system and that I will have to use xinetd.

I just got the RPM for that installed. Hopefully that will get me on the right track.
 
Just follow the instructions above and it will be finished.


ChrisP
 
Happy to say I finally got the bugger working.
 
Hello,
I have the same setup installed (postfix and qpopper), but it seems not to be working correctly. xinetd restarts fine with the exception of a "bind failed (Address already in use (errno 98)service = pop3)" in the syslog. Not really sure what this means and also when I try to telnet either to localhost 25 or localhost 110 they both return connection refused. NOw I can send email from the server but I can't receive. I am also a newbie at this so ALL the help I can get would be appreciated.

Juan C.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top