LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 03-12-2008, 12:16 AM   #1
Joe_Bogarde
Member
 
Registered: Dec 2002
Location: Ellensburg, WA
Distribution: Sabayon Linux 3.5
Posts: 48

Rep: Reputation: 15
Question Mail server madness


I have tried for about 7 days to get my mailserver working. It's Freebsd 6.2.
Updated the ports with cvsup. I installed apache server. I followed the instructions here: http://www.openaddict.com/node/33
I have installed sendmail, saslauthd, compiled sendmail with saslauth and I installed squirrelmail. When checking squirrelmail I get this message:
Message not sent. Server replied:

Syntax error; command not recognized
500 5.5.1 Command unrecognized: "AUTH LOGIN"

Code:
dovecot.conf

protocols = imap pop3
ssl_disable = yes
disable_plaintext_auth = no
mail_extra_groups = mail
login_dir = /var/run/dovecot/login
login_chroot = yes
login_user = dovecot
disable_plaintext_auth = no
login = PLAIN
protocol imap {
login_executable = /usr/local/libexec/dovecot/imap-login
mail_executable = /usr/local/libexec/dovecot/imap
login_greeting_capability = yes
}

protocol pop3 {
login_executable = /usr/local/libexec/dovecot/pop3-login
mail_executable = /usr/local/libexec/dovecot/pop3
pop3_enable_last = no
pop3_reuse_xuidl = no
pop3_uidl_format = %08Xu%08Xv
}

auth_executable = /usr/local/libexec/dovecot/dovecot-auth
auth_process_size = 256
auth_cache_ttl = 3600

auth default {
  mechanisms = plain
  user = root
  ssl_require_client_cert = no
  passdb pam {
  }
  userdb passwd {
  }
}
I installed spamassasin, etc. following instructions from every source I was willing to search, I'm just beyond frustrated. Generally server configuration has become almost second nature to me, but this has me stumped. If anyone knows of a howto I should use, or anything I have misconfigured, or more cfgs I can post please let me know.

Last edited by Joe_Bogarde; 03-12-2008 at 12:17 AM. Reason: To Edit.
 
Old 03-12-2008, 01:53 AM   #2
konsolebox
Senior Member
 
Registered: Oct 2005
Distribution: Gentoo, Slackware, LFS
Posts: 2,248
Blog Entries: 8

Rep: Reputation: 235Reputation: 235Reputation: 235
Hello sir.. I'm not sure if I can really help but are you sure you have properly configured your squirrelmail? Perhaps after running config/conf.pl? Does other mail clients also don't work with dovecot? I mean with IMAP? If some clients do work, try to know their configuration difference with squirrelmail. Perhaps if you need help with that you can also post your squirrelmail config if you like. Also please note that the predefined settings for servers in squirrelmail (gotten by the selecting D submenu in conf.pl) does not work all the time.
 
Old 03-12-2008, 02:33 AM   #3
esaym
Member
 
Registered: Nov 2006
Distribution: Lots of Debian
Posts: 165

Rep: Reputation: 32
I remember I had trouble getting squirrel mail to send before. Forgot what the error was though. I was following the ubuntu docs, they are alright: http://www.linuxquestions.org/questi...n-etch-625789/
 
Old 03-12-2008, 02:49 AM   #4
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
A couple of things.

Dovecot is an IMAP/POP server, so it has nothing to do with you sending email via squirrelmail, only receiving it (or am I mis-reading your point?).

Have a play with conf.pl, and try switching your "Sendmail or SMTP" settings to whatever it isn't already.

I don't use sendmail, but I assume you can tell sendmail to not require auhorisation from localhost can't you?
 
Old 03-12-2008, 02:52 AM   #5
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Dumb question - is saslauth running? I recall scratching my head for ages after rebuilding a box only to find I hadn't started that service.
 
Old 03-12-2008, 03:09 AM   #6
konsolebox
Senior Member
 
Registered: Oct 2005
Distribution: Gentoo, Slackware, LFS
Posts: 2,248
Blog Entries: 8

Rep: Reputation: 235Reputation: 235Reputation: 235
that should confuse things more a little bit..

is this an error from a message sending request to an smtp server or from a login attempt command to an imap server? where you trying to send a message or trying to log-in from the server? most probably it's the latter right?

When checking squirrelmail I get this message:
Message not sent. Server replied:

Syntax error; command not recognized
500 5.5.1 Command unrecognized: "AUTH LOGIN"

anyhow here's another info..

if it's imap, it's an error because your squirrelmail script and your imap server simply do not understand each other.. here are the possibilities:

(a) you were not able to properly configure squirrelmail to use the proper methods to act with your server (basically both configuration of dovecot and squirrelmail should be consistent with each other)

(b) dovecot is configured to use a different authentication method and is ignoring less secure methods like use sasl and ignore plain.. something like that., still similar to 'a' though.
 
Old 03-12-2008, 09:34 AM   #7
fotoguy
Senior Member
 
Registered: Mar 2003
Location: Brisbane Queensland Australia
Distribution: Custom Debian Live ISO's
Posts: 1,291

Rep: Reputation: 62
Not sure if i can help with your problem, but I may have another solution. i'm currently working on a live DVD email server disc. It runs Qmail, squirrelmail, spamassassin, clamav etc. It's based on slackware 12 and runs KDE Desktop to give new users, students, teachers a familiar face to look at and to administer the email system. Runs a full website using Tinyportal and SMF forums.

It can also be installed ( by script only ) , although the iso is not available just yet, i'm hoping to have it available in the next few days to a week. Currently trying to iron a few bugs out. Check out my website and see if it suits your needs. This is my first real website so it's not too fancy, but that will change in the future.

www.kirramail.com
 
Old 03-12-2008, 08:27 PM   #8
Joe_Bogarde
Member
 
Registered: Dec 2002
Location: Ellensburg, WA
Distribution: Sabayon Linux 3.5
Posts: 48

Original Poster
Rep: Reputation: 15
http://www.puresimplicity.net/~hemi/.../sendmail.html

Now I get a new message:

Message not sent. Server replied:

Connection refused
61 Can't open SMTP stream.

I will get it sorted out, (I hope!) Thanks for the help, I searched based on your replies and think I'm 1 inch closer to getting her done.
 
Old 03-12-2008, 08:40 PM   #9
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
You need to post log messages, not server responses to sort this out
 
Old 03-12-2008, 09:50 PM   #10
Joe_Bogarde
Member
 
Registered: Dec 2002
Location: Ellensburg, WA
Distribution: Sabayon Linux 3.5
Posts: 48

Original Poster
Rep: Reputation: 15
Thanks for pointing that out ;-)

Code:
Mar 12 18:52:31 gameserver sm-msp-queue[65790]: restarting /usr/local/sbin/sendmail due to signal
Mar 12 18:52:31 gameserver sm-msp-queue[65790]: could not exec /usr/local/sbin/sendmail: No such file or directory
Mar 12 19:21:17 gameserver sendmail[67164]: gethostbyaddr(192.168.1.22) failed: 2
Mar 12 19:21:17 gameserver sendmail[68415]: starting daemon (8.14.2): SMTP+queueing@00:30:00
Mar 12 19:21:17 gameserver sendmail[67156]: gethostbyaddr(192.168.1.22) failed: 2
Mar 12 19:21:17 gameserver sendmail[68416]: starting daemon (8.14.2): SMTP+queueing@00:30:00
Mar 12 19:21:17 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:21:17 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:21:22 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:21:22 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:21:27 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:21:27 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:21:32 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:21:32 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:21:37 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:21:37 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:21:42 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:21:42 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:21:47 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:21:47 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:21:52 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:21:52 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:21:57 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:21:57 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:22:01 gameserver sendmail[68681]: gethostbyaddr(192.168.1.22) failed: 2
Mar 12 19:22:02 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:22:02 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:22:07 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
Mar 12 19:22:07 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:22:07 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: server SMTP socket wedged: exiting
Mar 12 19:22:18 gameserver sendmail[68414]: m2D2LHJO068414: from=root, size=0, class=0, nrcpts=1, relay=root@localhost
Mar 12 19:22:29 gameserver sendmail[68706]: gethostbyaddr(192.168.1.22) failed: 2
Mar 12 19:22:37 gameserver sendmail[68712]: gethostbyaddr(192.168.1.22) failed: 2
Mar 12 19:22:39 gameserver sendmail[68717]: gethostbyaddr(192.168.1.22) failed: 2
Mar 12 19:22:40 gameserver sendmail[68718]: starting daemon (8.14.2): SMTP+queueing@00:30:00
Mar 12 19:22:55 gameserver sendmail[68722]: gethostbyaddr(192.168.1.22) failed: 2
Mar 12 19:40:12 gameserver sendmail[68763]: m2D2eCTW068763: localhost [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to IPv4
Mar 12 19:40:12 gameserver dovecot: imap-login: Aborted login (0 authentication attempts): rip=127.0.0.1, lip=127.0.0.1, secured
Mar 12 19:40:23 gameserver dovecot: imap-login: Login: user=<eric>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured
Mar 12 19:40:23 gameserver dovecot: IMAP(eric): Disconnected: Logged out
Mar 12 19:40:24 gameserver dovecot: imap-login: Login: user=<eric>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured
Mar 12 19:40:24 gameserver dovecot: IMAP(eric): Disconnected: Logged out
Mar 12 19:40:24 gameserver dovecot: imap-login: Login: user=<eric>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured
Mar 12 19:40:24 gameserver dovecot: IMAP(eric): Disconnected: Logged out
Mar 12 19:40:59 gameserver sendmail[68774]: m2D2ex1J068774: localhost [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to IPv4
Mar 12 19:45:24 gameserver dovecot: imap-login: Login: user=<eric>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured
Mar 12 19:45:24 gameserver dovecot: IMAP(eric): Disconnected: Logged out
Code:
Mar 12 18:28:14 gameserver sm-mta[65793]: m2C8hHXI060218: to=<******@msn.com>, delay=16:34:26, xdelay=00:03:00, mailer=esmtp, pri=3092509, relay=mx2.hotmail.com., dsn=4.0.0, stat=Deferred: Name server: mx2.hotmail.com.: host name lookup failure
Mar 12 18:28:14 gameserver sm-mta[65793]: m2C8hHXJ060218: to=<*******@msn.com>, delay=16:27:11, xdelay=00:00:00, mailer=esmtp, pri=3092509, relay=mx1.hotmail.com., dsn=4.0.0, stat=Deferred: Name server: mx1.hotmail.com.: host name lookup failure
Mar 12 18:30:22 gameserver dovecot: imap-login: Login: user=<eric>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured
Mar 12 18:30:22 gameserver dovecot: IMAP(eric): Disconnected: Logged out
 
Old 03-12-2008, 09:59 PM   #11
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Does /usr/local/sbin/sendmail exist? If not, where is sendmail?
 
Old 03-12-2008, 11:22 PM   #12
konsolebox
Senior Member
 
Registered: Oct 2005
Distribution: Gentoo, Slackware, LFS
Posts: 2,248
Blog Entries: 8

Rep: Reputation: 235Reputation: 235Reputation: 235
Quote:
Connection refused
61 Can't open SMTP stream.
that's probably a whole procedure that won't work because of this:
Code:
Mar 12 19:21:37 gameserver sendmail[68416]: daemon IPv4: problem creating SMTP socket
Mar 12 19:21:42 gameserver sendmail[68416]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon IPv4: cannot bind: Address already in use
I see 2 possibilities here: 1 is that an application is already using the port that need's to be used .. 2 is that sendmail is trying to create another instance of itself in which an old instance is already using it.. perhaps an old instance that has been waiting for a response forever. I don't see why this should happen in sendmail anyway.

Perhaps sendmail runs in this way:
if there is no stream
open it
else
reuse it
fi

But sometimes a problem occurs
if there is no stream (actually there is but can't detect it)
open it (and there goes the already in use error)
...

It's only opinion.. still it's only probably just a misconfiguration.

Btw please show your /etc/hosts. I'm kind of confused why get the gethostbyaddr problem.

Last edited by konsolebox; 03-12-2008 at 11:23 PM.
 
Old 03-13-2008, 03:30 PM   #13
Joe_Bogarde
Member
 
Registered: Dec 2002
Location: Ellensburg, WA
Distribution: Sabayon Linux 3.5
Posts: 48

Original Poster
Rep: Reputation: 15
My /etc/hosts

Code:
# $FreeBSD: src/etc/hosts,v 1.16 2003/01/28 21:29:23 dbaker Exp $
#
# Host Database
#
# This file should contain the addresses and aliases for local hosts that
# share this file.  Replace 'my.domain' below with the domainname of your
# machine.
#
# In the presence of the domain name service or NIS, this file may
# not be consulted at all; see /etc/nsswitch.conf for the resolution order.
#
#
::1                     192.168.1.22 gameserver.homenetwork
127.0.0.1              localhost 192.168.1.22 gameserver.homenetwork
#
# Imaginary network.
#10.0.0.2               myname.my.domain myname
#10.0.0.3               myfriend.my.domain myfriend
#
# According to RFC 1918, you can use the following IP networks for
# private nets which will never be connected to the Internet:
#
#       10.0.0.0        -   10.255.255.255
#       172.16.0.0      -   172.31.255.255
#       192.168.0.0     -   192.168.255.255
#
# In case you want to be able to connect to the Internet, you need
# real official assigned numbers.  Do not try to invent your own network
# numbers but instead get one from your network provider (if any) or
# from your regional registry (ARIN, APNIC, LACNIC, RIPE NCC, or AfriNIC.)
#

~
~
~
~
~
~
~
~
~
~
~
(END)
 
Old 03-13-2008, 03:45 PM   #14
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
BSD might be different from Linux, but why is there an IP in the localhost line?

Code:
127.0.0.1              localhost 192.168.1.22 gameserver.homenetwork
I'd expect something more like

Code:
127.0.0.1              localhost gameserver.homenetwork
And maybe a line

Code:
192.168.1.22           gameserver gameserver.homenetwork

Last edited by billymayday; 03-13-2008 at 03:47 PM.
 
Old 03-13-2008, 03:51 PM   #15
Joe_Bogarde
Member
 
Registered: Dec 2002
Location: Ellensburg, WA
Distribution: Sabayon Linux 3.5
Posts: 48

Original Poster
Rep: Reputation: 15
Thanks,

I'm not so good with /etc/hosts despite being linux/unix junkie for 8 years, I just have never done servers till this last year.

Code:
# $FreeBSD: src/etc/hosts,v 1.16 2003/01/28 21:29:23 dbaker Exp $
#
# Host Database
#
# This file should contain the addresses and aliases for local hosts that
# share this file.  Replace 'my.domain' below with the domainname of your
# machine.
#
# In the presence of the domain name service or NIS, this file may
# not be consulted at all; see /etc/nsswitch.conf for the resolution order.
#
#
::1                     192.168.1.22 gameserver.homenetwork
127.0.0.1       localhost loopback
127.0.0.1       localhost gameserver.homenetwork
192.168.1.22    gameserver gameserver.homenetwork
192.168.1.16    vista vista.homenetwork
192.168.1.19    tony tony.homenetwork
#
# Imaginary network.
Output of netstat (in case it's useful)
Code:
 Active Internet connections
Proto Recv-Q Send-Q  Local Address          Foreign Address        (state)
tcp4       0     52  gameserver.ssh         static-66-243-24.49152 ESTABLISHED
tcp4       0      0  gameserver.ssh         static-66-243-24.54934 ESTABLISHED
udp4       0      0  gameserver.27960       *.*
Active UNIX domain sockets
Address  Type   Recv-Q Send-Q    Inode     Conn     Refs  Nextref Addr
c342b2bc stream      0      0        0 c342b230        0        0 /var/run/dovecot/login/default
c342b230 stream      0      0        0 c342b2bc        0        0
c342bdac stream      0      0        0 c342b7a8        0        0
c342b7a8 stream      0      0        0 c342bdac        0        0
c37931a4 stream      0      0        0 c36f4690        0        0 /var/run/dovecot/login/default
c36f4690 stream      0      0        0 c37931a4        0        0
c36f4834 stream      0      0        0 c342c1a4        0        0
c342c1a4 stream      0      0        0 c36f4834        0        0
c3793230 stream      0      0        0 c37932bc        0        0 /var/run/dovecot/login/default
c37932bc stream      0      0        0 c3793230        0        0
c342b690 stream      0      0        0 c342b348        0        0
c342b348 stream      0      0        0 c342b690        0        0
c342baf0 stream      0      0        0 c342c118        0        0
c342c118 stream      0      0        0 c342baf0        0        0
c342c2bc stream      0      0        0 c342c08c        0        0
c342c08c stream      0      0        0 c342c2bc        0        0
c342c578 stream      0      0        0 c342c604        0        0 /var/run/dovecot/login/default
c342c604 stream      0      0        0 c342c578        0        0
c342c690 stream      0      0        0 c342c71c        0        0 /var/run/dovecot/login/default
c342c71c stream      0      0        0 c342c690        0        0
c342c7a8 stream      0      0        0 c342c834        0        0 /var/run/dovecot/login/default
c342c834 stream      0      0        0 c342c7a8        0        0
c342cc08 stream      0      0        0 c342cc94        0        0
c342cc94 stream      0      0        0 c342cc08        0        0
c342cd20 stream      0      0        0 c342cdac        0        0
c342cdac stream      0      0        0 c342cd20        0        0
c342ce38 stream      0      0        0 c342cec4        0        0
c342cec4 stream      0      0        0 c342ce38        0        0
c36f4000 stream      0      0 c3ffe000        0        0        0 /var/run/dovecot/auth-worker.51643
c36f408c stream      0      0        0 c36f4118        0        0
c36f4118 stream      0      0        0 c36f408c        0        0
c342b118 stream      0      0 c5029aa0        0        0        0 /var/run/dovecot/login/default
c342ba64 stream      0      0 c4381660        0        0        0 /var/run/dovecot/dict-server
c342bb7c stream      0      0 c432f880        0        0        0 /var/run/spamass-milter.sock
c342bc94 stream      0      0 c3ee9880        0        0        0 /var/run/saslauthd/mux
c342b94c stream      0      0 c44d4aa0        0        0        0 /var/run/saslauthd/mux
c342b8c0 stream      0      0        0 c342b834        0        0
c342b834 stream      0      0        0 c342b8c0        0        0
c342bd20 stream      0      0 c5072cc0        0        0        0 /var/run/proftpd/proftpd.sock
c342b9d8 stream      0      0 c4b29dd0        0        0        0 /var/run/proftpd/proftpd.sock
c342b08c stream      0      0 c3562cc0        0        0        0 /tmp/mysql.sock
c342b71c stream      0      0 c3497660        0        0        0 /var/run/devd.pipe
c342c4ec dgram       0      0        0 c342b4ec        0 c342b1a4
c342c94c dgram       0      0        0 c342b578        0 c342ca64
c342ca64 dgram       0      0        0 c342b578        0 c342b000
c342b1a4 dgram       0      0        0 c342b4ec        0 c342b460
c342b460 dgram       0      0        0 c342b4ec        0 c342b604
c342b604 dgram       0      0        0 c342b4ec        0 c342bec4
c342bec4 dgram       0      0        0 c342b4ec        0 c342c000
c342c000 dgram       0      0        0 c342b4ec        0        0
c342b000 dgram       0      0        0 c342b578        0        0
c342b4ec dgram       0      0 c349e440        0 c342c4ec        0 /var/run/logpriv
c342b578 dgram       0      0 c349e550        0 c342c94c        0 /var/run/log

Last edited by Joe_Bogarde; 03-13-2008 at 03:55 PM. Reason: To post output of netstat
 
  


Reply

Tags
dovecot, imap, mailserver, pop3, smtp, squirrelmail



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to connect linux mail server with the exchange mail server nanuseenu Linux - Newbie 4 03-04-2008 03:37 AM
how to configure Linux mail client with existing mail server running on WindowsXP? Senthilvnr Linux - Networking 1 07-11-2006 12:02 AM
can we configure a Linux server with mail server,file server and web server kumarx Linux - Newbie 5 09-09-2004 06:21 AM
Mail Server Delimiter for alternate mail server venugopalmk Linux - Networking 2 04-29-2003 04:55 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 09:07 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration