Re: [vchkpw] adding load_connection_info into backends/postgres

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Itamar Reis Peixoto wrote: Can you add load_connection_info link backend/mysql does into postgres backend ? vpopmail postgresql backend should read connections details from a file, like mysql backend load from vpopmail.mysql Please add this

Re: [vchkpw] adding load_connection_info into backends/postgres

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Itamar Reis Peixoto wrote: there are a way to talk with you in realtime ? like irc for example ? I'd prefer conversations about future development be kept on-list so that the list members can at least read about what's going on. - -- /* Matt

[vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread Itamar Reis Peixoto
currently vpopmail user and vchkpw group's need's to be created before running ./configure. this is not good for packaging it as rpm, because in rpm the user and group are created in %post section (after vpopmail installed) #define VPOPMAILGID 503 #define VPOPMAILUID 507 any chance to improve

Re: [vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Itamar Reis Peixoto wrote: currently vpopmail user and vchkpw group's need's to be created before running ./configure. this is not good for packaging it as rpm, because in rpm the user and group are created in %post section (after vpopmail

[vchkpw] Upgrading vpopmail 5.5.0

2009-08-17 Thread shiv
hello after upgrading from vpopmail 2.4.27 to 5.5.0 and starting vusaged I am getting the following error vmysql: sql error[3]: Table 'vpopmail.test.gy' doesn't exist Attempting to rebuild connection to SQL server vmysql: connection rebuild failed: Table 'vpopmail.test.gy' doesn't exist Sorry,

Re: [vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread Itamar Reis Peixoto
I agree parsing /etc/passwd every time is expensive a config file file will be welcome. On Mon, Aug 17, 2009 at 1:18 PM, Matt Brookingsm...@inter7.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Itamar Reis Peixoto wrote: currently vpopmail user and vchkpw group's need's to be

Re: [vchkpw] Upgrading vpopmail 5.5.0

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 shiv wrote: hello after upgrading from vpopmail 2.4.27 to 5.5.0 and starting vusaged I am getting the following error vmysql: sql error[3]: Table 'vpopmail.test.gy' doesn't exist Attempting to rebuild connection to SQL server vmysql:

Re: [vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread T.J. Drennan
Itamar Reis Peixoto wrote: currently vpopmail user and vchkpw group's need's to be created before running ./configure. this is not good for packaging it as rpm, because in rpm the user and group are created in %post section (after vpopmail installed) #define VPOPMAILGID 503 #define

[vchkpw] --enable-many-domains back in 5.5

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I've re-added the lost --enable-many-domains configuration flag to the 5.5 branch in Subversion. I'll make a release tarball before the end of the day today. Note, the --enable-many-domains flag is used when configuring the backend module, not the

Re: [vchkpw] Upgrading vpopmail 5.5.0

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 shiv wrote: hello after upgrading from vpopmail 2.4.27 to 5.5.0 and starting vusaged I am getting the following error shiv, if you want a quick fix, just edit the vmysql.h file in the backends/mysql directory, and add a line at the top:

Re: [vchkpw] Upgrading vpopmail 5.5.0

2009-08-17 Thread shiv
this is strange, after editing the file and add the quick fix and run ./configure. the quick fix line get removed from the file. after recompile, same result, the table does not exists. shiv -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 shiv wrote: hello after upgrading from vpopmail

Re: [vchkpw] Upgrading vpopmail 5.5.0

2009-08-17 Thread Itamar Reis Peixoto
run configure add the line make and make install On Mon, Aug 17, 2009 at 2:51 PM, shivs...@netcom.gy wrote: this is strange, after editing the file and add the quick fix and run ./configure. the quick fix line get removed from the file. after recompile, same result, the table does not

Re: [vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread Tren Blackburn
And since no one else has mentioned this...some of us don't use /etc/passwd for authentication. So searching /etc/passwd would not work anyway. Isn't there a C function call to check user/group id? Or at least a universal alternative... t - Original Message - From: Matt Brookings

Re: [vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tren Blackburn wrote: And since no one else has mentioned this...some of us don't use /etc/passwd for authentication. So searching /etc/passwd would not work anyway. Isn't there a C function call to check user/group id? Or at least a universal

Re: [vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread Itamar Reis Peixoto
my suggestion is related about which user and group vpopmail run's not about authentication. no authentication is involved in this On Mon, Aug 17, 2009 at 5:52 PM, Matt Brookingsm...@inter7.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tren Blackburn wrote: And since no one

Re: [vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Itamar Reis Peixoto wrote: my suggestion is related about which user and group vpopmail run's not about authentication. no authentication is involved in this That may be the case, but the fact is, your system-level authentication backend

Re: [vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread Itamar Reis Peixoto
storing uid / gid in a config file will be light On Mon, Aug 17, 2009 at 5:57 PM, Matt Brookingsm...@inter7.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Itamar Reis Peixoto wrote: my suggestion is related about which user and group vpopmail run's not about authentication. no

Re: [vchkpw] vpopmail UID/GID hardcoded in config.h

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Itamar Reis Peixoto wrote: storing uid / gid in a config file will be light Lighter than accessing an authentication database, agreed. Like I said, I'm hoping to add configuration API to vpopmail that will replace all the configure-time options

[vchkpw] New 5.5 release on SourceForge

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 ChangeLog: - Many domains configuration had been lost in the shuffle; Fixed - -- /* Matt Brookings m...@inter7.com GnuPG Key FAE0672C Software developer Systems technician Inter7 Internet Technologies, Inc.

[vchkpw] Vpopmail 5.5.0 vs. valias

2009-08-17 Thread Gabriel Torres
Hello, After upgrading to Vpopmail 5.5.0 our forwarders (valias) stop working. Installed like this: ./configure --enable-logging=p --disable-passwd --enable-clear-passwd --disable-many-domains --enable-sql-logging --disable-mysql-limits make make install-strip cd backends/mysql ./configure

Re: [vchkpw] Vpopmail 5.5.0 vs. valias

2009-08-17 Thread Itamar Reis Peixoto
Gabriel Torres meu amigo, better to stay at 5.4.27 at this moment. Matt. the backend modules need's to share VALIAS config with main vpopmail. in the vpopmail code I have #ifdef VALIAS, so if VALIAS is activated in main vpopmail code it's need's to be activated in all vpopmail backend modules

Re: [vchkpw] Vpopmail 5.5.0 vs. valias

2009-08-17 Thread Matt Brookings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Itamar Reis Peixoto wrote: the backend modules need's to share VALIAS config with main vpopmail. in the vpopmail code I have #ifdef VALIAS, so if VALIAS is activated No, they don't need to share VALIAS config with main vpopmail. The leftover