Re: [Dovecot] tables between dovecot and postfix and a paradoxical question

2013-06-23 Thread Benny Pedersen
Mohsen Pahlevanzadeh skrev den 2013-06-22 01:25: How can i combine together? i created username like this: # sql dump SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; CREATE TABLE IF NOT EXISTS `username` ( `concat(userid,"@",domain)` varchar(257) ); CREATE TABLE IF NOT EXIS

Re: [Dovecot] tables between dovecot and postfix and a paradoxical question

2013-06-21 Thread Bradley Giesbrecht
On Jun 21, 2013, at 4:25 PM, Mohsen Pahlevanzadeh wrote: > Dear all, > > I read we create the following table in wiki2 : > CREATE TABLE users ( >userid VARCHAR(128) NOT NULL, >domain VARCHAR(128) NOT NULL, >password VARCHAR(64) NOT NULL, >home VARCHAR(255) NOT NULL, >uid INTEG

[Dovecot] tables between dovecot and postfix and a paradoxical question

2013-06-21 Thread Mohsen Pahlevanzadeh
Dear all, I read we create the following table in wiki2 : CREATE TABLE users ( userid VARCHAR(128) NOT NULL, domain VARCHAR(128) NOT NULL, password VARCHAR(64) NOT NULL, home VARCHAR(255) NOT NULL, uid INTEGER NOT NULL, gid INTEGER NOT NULL ); But i read the following text