[vchkpw] Urgent - Segmentation Fault
Hi All, I have installed qmail+vpopmail+sqwebmail. When i installed it all thing were working fine. I created a domain using vadddomain. But now when i am using vadddomain , It asks for the new password & then displays an error "Segmentation Fault. Core Dumped". Please help its urgent. Thanks, Tanmaya
Re: [vchkpw] Urgent - Segmentation Fault
Are you using vpopmail-5.3.23? vpopmail-5.3.24 contains a fix for this bug You can download it from http://sourceforge.net/projects/vpopmail Michael - Original Message - From: Tanmaya Anand To: [EMAIL PROTECTED] Sent: Sunday, August 24, 2003 5:47 PM Subject: [vchkpw] Urgent - Segmentation Fault Hi All, I have installed qmail+vpopmail+sqwebmail. When i installed it all thing were working fine. I created a domain using vadddomain. But now when i am using vadddomain , It asks for the new password & then displays an error "Segmentation Fault. Core Dumped". Please help its urgent. Thanks, Tanmaya
Re: [vchkpw] Urgent - Segmentation Fault
Hi, Thanks. Its working fine after upgrading the package. Regards, Tanmaya - Original Message - From: Michael Bowe To: [EMAIL PROTECTED] Sent: Sunday, August 24, 2003 2:03 PM Subject: Re: [vchkpw] Urgent - Segmentation Fault Are you using vpopmail-5.3.23? vpopmail-5.3.24 contains a fix for this bug You can download it from http://sourceforge.net/projects/vpopmail Michael - Original Message - From: Tanmaya Anand To: [EMAIL PROTECTED] Sent: Sunday, August 24, 2003 5:47 PM Subject: [vchkpw] Urgent - Segmentation Fault Hi All, I have installed qmail+vpopmail+sqwebmail. When i installed it all thing were working fine. I created a domain using vadddomain. But now when i am using vadddomain , It asks for the new password & then displays an error "Segmentation Fault. Core Dumped". Please help its urgent. Thanks, Tanmaya
[vchkpw] Unable to pop mails
Hi all, I have installed qmail+vpopmail+sqwebmail. All the domains i have configured are wroking fine via sqwebmail. but i am unable to use it via any email client like Outlook Express. Kindly guide me how to setup up qmail to use this vpopmail & its Maildirs. Thanks in advance, Regards, Tanmaya
Re: [vchkpw] Unable to pop mails
On Sunday, August 24, 2003, at 05:16 AM, Tanmaya Anand wrote: All the domains i have configured are wroking fine via sqwebmail. but i am unable to use it via any email client like Outlook Express. Make sure you configure the email client to use the full email address as the username: POP/IMAP user: [EMAIL PROTECTED] POP/IMAP server: mail.domain.com -- Tom Collins [EMAIL PROTECTED] http://sniffter.com/ - info on the Sniffter hand-held Network Tester
Re: [vchkpw] Re: Webmail question
i *am* using a software PHP accelerator, and there's no good reason for anyone to run squirrelmail without one - it dramatically reduces CPU demand. for those who may be interested, and also unaware of it, there is a freeware php accelerator out there. it works great, and i highly recommend it. figured this was an appropriate followup to my own post. http://www.php-accelerator.co.uk/ Paul Theodoropoulos http://www.anastrophe.com
[vchkpw] vpopmail with courier-imap and relay
Title: Melding Hello How can i allow every user that is using IMAP to send mails trough the mailserver ?? Regards Bård Tommy Nilsen
Re: [vchkpw] vpopmail with courier-imap and relay
söndagen den 24 augusti 2003 21.42 skrev Bård Tommy Nilsen: > Hello > > How can i allow every user that is using IMAP to send mails trough the > mailserver ?? I assume you mean roaming access? Read the documentations, annoy Mr. Sam, and/or use the attached patch? --- authlib/preauthvchkpw.c 2003-03-12 03:51:27.0 +0100 +++ authlib/preauthvchkpw.c.oden 2003-06-09 12:50:17.0 +0200 @@ -27,7 +27,7 @@ static const char rcsid[]="$Id: preauthvchkpw.c,v 1.18 2003/03/12 02:45:55 mrsam Exp $"; -#undef HAVE_OPEN_SMTP_RELAY +/* #undef HAVE_OPEN_SMTP_RELAY */ /* Disabled, pending fix */ int auth_vchkpw_pre(const char *userid, const char *service, @@ -63,9 +63,9 @@ make_user_dir(User, Domain, uid, gid); vpw=vauth_getpw(User, Domain); } -#ifdef ENABLE_AUTH_LOGGING +/* #ifdef ENABLE_AUTH_LOGGING */ vset_lastauth(User, Domain, service); -#endif +/* #endif */ } free(usercopy); @@ -84,19 +84,19 @@ if ( vpw->pw_gid & NO_POP ) { return(-1); } else { -#ifdef HAVE_OPEN_SMTP_RELAY +/* #ifdef HAVE_OPEN_SMTP_RELAY */ /* open the relay to pop users */ open_smtp_relay(); -#endif +/* #endif */ } } else if ( strcmp("imap", service) == 0 ) { if ( vpw->pw_gid & NO_IMAP ) { return(-1); } else { -#ifdef HAVE_OPEN_SMTP_RELAY +/* #ifdef HAVE_OPEN_SMTP_RELAY */ /* open the relay to imap users */ open_smtp_relay(); -#endif +/* #endif */ } }
Re: [vchkpw] Re: Webmail question
I have also been using that software on my server for a while now It seems to work very well Michael - Original Message - From: "Paul Theodoropoulos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 25, 2003 2:14 AM Subject: Re: [vchkpw] Re: Webmail question > > >> i *am* using a software PHP accelerator, and there's no good reason for > >> anyone to run squirrelmail without one - it dramatically reduces CPU demand. > > for those who may be interested, and also unaware of it, there is a > freeware php accelerator out there. it works great, and i highly recommend > it. figured this was an appropriate followup to my own post. > > http://www.php-accelerator.co.uk/ > > > > > Paul Theodoropoulos > http://www.anastrophe.com > > > >
Re: [vchkpw] Re: Webmail question
Has anyone considered the Alternative PHP Cache http://apc.communityconnect.com/ ?? It's the PHP accelerator that is compiled in when you use the Apache Toolbox kit http://www.apachetoolbox.com Just curious why you guys use the one you do? > I have also been using that software on my server for a while now > > It seems to work very well > > Michael > > - Original Message - > From: "Paul Theodoropoulos" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, August 25, 2003 2:14 AM > Subject: Re: [vchkpw] Re: Webmail question > > >> >> >> i *am* using a software PHP accelerator, and there's no good reason > for >> >> anyone to run squirrelmail without one - it dramatically reduces CPU > demand. >> >> for those who may be interested, and also unaware of it, there is a >> freeware php accelerator out there. it works great, and i highly >> recommend >> it. figured this was an appropriate followup to my own post. >> >> http://www.php-accelerator.co.uk/ >> >> >> >> >> Paul Theodoropoulos >> http://www.anastrophe.com >> >> >> >> > > >
RE: [vchkpw] vpopmail with courier-imap and relay
Why patch? doit with Mailfront for me it works. I use tcpserver with courier-imap, mailfront-vpopmail-auth-modul und vpopmail. Jan > -Original Message- > From: Oden Eriksson [mailto:[EMAIL PROTECTED] > Sent: Sunday, August 24, 2003 10:04 PM > To: [EMAIL PROTECTED] > Subject: Re: [vchkpw] vpopmail with courier-imap and relay > > > söndagen den 24 augusti 2003 21.42 skrev Bård Tommy Nilsen: > > Hello > > > > How can i allow every user that is using IMAP to send mails > trough the > > mailserver ?? > > I assume you mean roaming access? > > Read the documentations, annoy Mr. Sam, and/or use the attached patch? > >
Re: [vchkpw] Re: Webmail question
söndagen den 24 augusti 2003 23.24 skrev Michael Bowe: > I have also been using that software on my server for a while now > > It seems to work very well > > Michael I'm maintaining the php-mmcache and php-apc packages for Mandrake Linux, I like the php-mmcache package more though. Direct links: Use the upcoming Mandrake Linux 9.2 release..., or grab the source rpm packages here (rpm --rebuild the_package.src.rpm): ftp://ftp.uninett.no/linux/Mandrake/Mandrake-devel/contrib/SRPMS/php-apc-4.3.2_2.0-1mdk.src.rpm ftp://ftp.uninett.no/linux/Mandrake/Mandrake-devel/contrib/SRPMS/php-mmcache-4.3.2_2.3.23-1mdk.src.rpm Or visit the authors web sites: http://pear.php.net/package/APC http://www.turcksoft.com/en/e_mmc.htm Cheers. PS. Sorry for the OT plug..., but... > - Original Message - > From: "Paul Theodoropoulos" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, August 25, 2003 2:14 AM > Subject: Re: [vchkpw] Re: Webmail question > > > >> i *am* using a software PHP accelerator, and there's no good reason > > for > > > >> anyone to run squirrelmail without one - it dramatically reduces CPU > > demand. > > > for those who may be interested, and also unaware of it, there is a > > freeware php accelerator out there. it works great, and i highly > > recommend it. figured this was an appropriate followup to my own post. > > > > http://www.php-accelerator.co.uk/ > > > > > > > > > > Paul Theodoropoulos > > http://www.anastrophe.com