"Do you have an SQL entry for abuse at kasdivi.com <mailto:abuse at kasdivi.com> ? Bill? One of my first thoughts mysql> SELECT `address`, `domain`, `goto` FROM `alias` LIMIT 8; +-------------------------------+--------------------+--------------------------+ | address | domain | goto | +-------------------------------+--------------------+--------------------------+ | abuse at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | | hostmaster at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | | postmaster at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | | webmaster at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | | jason at theoceanwindow.com | theoceanwindow.com | jason at theoceanwindow.com | | admin at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | | test at theoceanwindow.com | theoceanwindow.com | test at theoceanwindow.com | | abuse at kasdivi.com | kasdivi.com | admin at theoceanwindow.com | +-------------------------------+--------------------+--------------------------+ 8 rows in set (0.00 sec)
Am 12. Oktober 2017 17:24:49 MESZ schrieb jason hirsh <hirshj at att.net>:> > >"Do you have an SQL entry for abuse at kasdivi.com ><mailto:abuse at kasdivi.com> ? > >Bill? > > >One of my first thoughts > > >mysql> SELECT `address`, `domain`, `goto` FROM `alias` LIMIT 8; >+-------------------------------+--------------------+--------------------------+ >| address | domain | goto > | >+-------------------------------+--------------------+--------------------------+ >| abuse at theoceanwindow.com | theoceanwindow.com | >admin at theoceanwindow.com | >| hostmaster at theoceanwindow.com | theoceanwindow.com | >admin at theoceanwindow.com | >| postmaster at theoceanwindow.com | theoceanwindow.com | >admin at theoceanwindow.com | >| webmaster at theoceanwindow.com | theoceanwindow.com | >admin at theoceanwindow.com | >| jason at theoceanwindow.com | theoceanwindow.com | >jason at theoceanwindow.com | >| admin at theoceanwindow.com | theoceanwindow.com | >admin at theoceanwindow.com | >| test at theoceanwindow.com | theoceanwindow.com | >test at theoceanwindow.com | >| abuse at kasdivi.com | kasdivi.com | >admin at theoceanwindow.com | >+-------------------------------+--------------------+--------------------------+ >8 rows in set (0.00 sec)You have the alias abuse at kasdivi.com for the address admin at theoceanwindow.com in your db and all mail to these aliases should go the the admin@ mailbox. Address mapping should be done in postfix so that the recipient address that gets used on the lmtp connection to dovecot is admin at theoceanwindow.com You probably disabled address mapping in postfix. -- Christian Kivalo
So abuse at kasdivi.com is an alias, not a user.? You can't login with an alias because your user_query is looking at the`mailbox` table. Have your tried logging in as: admin at theoceanwindow.com OR you could put an entry forabuse at kasdivi.com in your `mailbox` table. Bill On 10/12/2017 11:24 AM, jason hirsh wrote:> > "Do you have an SQL entry for abuse at kasdivi.com <mailto:abuse at kasdivi.com> ? > > Bill? > > > One of my first thoughts > > > mysql> SELECT `address`, `domain`, `goto` FROM `alias` LIMIT 8; > +-------------------------------+--------------------+--------------------------+ > | address | domain | goto | > +-------------------------------+--------------------+--------------------------+ > | abuse at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | > | hostmaster at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | > | postmaster at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | > | webmaster at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | > | jason at theoceanwindow.com | theoceanwindow.com | jason at theoceanwindow.com | > | admin at theoceanwindow.com | theoceanwindow.com | admin at theoceanwindow.com | > | test at theoceanwindow.com | theoceanwindow.com | test at theoceanwindow.com | > | abuse at kasdivi.com | kasdivi.com | admin at theoceanwindow.com | > +-------------------------------+--------------------+--------------------------+ > 8 rows in set (0.00 sec)