> error: > DBD::Pg::st execute failed: ERROR: duplicate key violates unique > constraint "dbmail_aliases_pkey" > Cannot complete query: ERROR: duplicate key violates unique > constraint "dbmail_aliases_pkey"
There's a unique constraint on a column in the dbmail_aliases table probably dbmail_aliases_idnr) and you're trying to insert 2 rows with the same value in that field. Just increment a counter every time you insert a row, and put that value into that field. -- Jesse Norell jesse @ kci.net
