Displaying 20 results from an estimated 600 matches similar to: "last_login plugin with MySQL"
2019 Apr 01
1
Possible bug with last_login plugin and PostgreSQL
Dear all,
I'm trying to get last_login plugin working with PostgreSQL, but seems Dovecot
doesn't handle duplicate key while updating last login time (note: same setting
works fine with MariaDB). I wonder whether it's a bug of Dovecot or i should handle
this with PostgreSQL trigger.
OS: OpenBSD 6.4 (amd64)
Dovecot: 2.2.36
PostgreSQL: 10.5
Error log:
###################
Mar 31
2019 May 19
2
Dict issue with PostgreSQL for last_login plugin (duplicate key)
Hello,
I am trying to setup the last_login plugin on Dovecot 2.3 in order to log a user's last IMAP login into a separate PostgreSQL table called last_login. I am actually following that guide: https://docs.iredmail.org/track.user.last.login.html with the exception that I use PostgreSQL instead of MySQL.
So far it works at least for the very first login of a user but it looks like Dict
2017 Mar 22
0
last_login LDAP - killed with signal 11 (core dumped)
On 22.03.2017 10:03, Leon Kyneur wrote:
> Hi
>
> I am trying to configure the last_login plugin with LDAP dictionary
> which is causing dict service to crash. Not sure if this is a bug or
> some configuration parameter I'm getting wrong?
>
> Running latest dovecot but was having the same problem in earlier
> version 2.2.25
>
> # dovecot --version
> 2.2.28
2017 Mar 22
1
last_login LDAP - killed with signal 11 (core dumped)
On Wed, Mar 22, 2017, at 01:04 AM, Aki Tuomi wrote:
>
> On 22.03.2017 10:03, Leon Kyneur wrote:
> > Hi
> >
> > I am trying to configure the last_login plugin with LDAP dictionary
> > which is causing dict service to crash. Not sure if this is a bug or
> > some configuration parameter I'm getting wrong?
> >
> > Running latest dovecot but was
2017 Mar 22
2
last_login LDAP - killed with signal 11 (core dumped)
Hi
I am trying to configure the last_login plugin with LDAP dictionary
which is causing dict service to crash. Not sure if this is a bug or
some configuration parameter I'm getting wrong?
Running latest dovecot but was having the same problem in earlier
version 2.2.25
# dovecot --version
2.2.28 (bed8434)
I have configured dovecot like so:
dovecot.conf (before conf.d/*.conf:
dict {
2019 May 19
0
Dict issue with PostgreSQL for last_login plugin (duplicate key)
On 19/05/2019 12:52, mabi via dovecot wrote:
> Hello,
>
> I am trying to setup the last_login plugin on Dovecot 2.3 in order to log a user's last IMAP login into a separate PostgreSQL table called last_login. I am actually following that guide: https://docs.iredmail.org/track.user.last.login.html with the exception that I use PostgreSQL instead of MySQL.
>
> So far it works at
2014 Oct 18
0
Recap: last_login plugin with MySQL
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
With many thanks to Gedalya and Sven Hartge
Situation: Dovecot installation with userbase in a MySQL table with the same
structure described in Postfix.Admin installation; filesystem permission is
flat with a single user (vmail) who owns maildir mailbox files and directories.
Procedure to implement last-login plugin to update mailbox table. The
2017 Apr 28
0
Dovecot last_login plugin and Mysql
> On April 29, 2017 at 12:29 AM David Mehler <dave.mehler at gmail.com> wrote:
>
>
> Hello,
>
> Trying to implement lastlogin via mysql. I'm getting an unknown column
> username which I don't get. Here's the log:
>
> Apr 28 17:18:15 ohio dovecot: imap-login: Login:
> user=<user at example.com>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1,
2017 Apr 29
0
Dovecot last_login plugin and Mysql
Hi,
Thanks for the pointing out of the oops! I missed that. Don't worry
that has been changed.
Any suggestions on my issue?
Thanks.
Dave.
On 4/28/17, David Mehler <dave.mehler at gmail.com> wrote:
> Hi,
>
> OOPS! I missed that one and it was big.
>
> Changing now.
>
> Thanks.
> Dave.
>
>
> On 4/28/17, Noel Butler <noel.butler at ausics.net>
2017 Apr 28
4
Dovecot last_login plugin and Mysql
Hello,
Trying to implement lastlogin via mysql. I'm getting an unknown column
username which I don't get. Here's the log:
Apr 28 17:18:15 ohio dovecot: imap-login: Login:
user=<user at example.com>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1,
mpid=16257, secured, session=<KxiSnEBOwUx/AAAB>
Apr 28 17:18:15 ohio dovecot: dict(17099): Error: sql dict: commit
failed: Unknown
2017 Apr 28
2
Dovecot last_login plugin and Mysql
Hi Aki,
Thanks. Can you tell me how you implemented it?
Thanks.
Dave.
On 4/28/17, Aki Tuomi <aki.tuomi at dovecot.fi> wrote:
>
>> On April 28, 2017 at 8:08 PM David Mehler <dave.mehler at gmail.com> wrote:
>>
>>
>> Hello,
>>
>> Is anyone using the last_login plugin with a Mysql database? I'd like
>> to track when users were last on
2018 Sep 23
2
Last_login plugin and mysql
Hello,
i have problems configuring the last_login plugin with mysql.
I have extended the postfixadmin database with a new field,
configured the plugin as described in the wiki.
Finally i got errors: table is not writable, INSERT failed.
Why is the insert required? The plugin should only UPDATE
the column for existing rows.
Or am i missing some configuration options?
Here is my dictionary
2020 Apr 23
0
Re-to-archived-thread: Dict issue with PostgreSQL for last_login plugin (duplicate key)
Hi,
I have tried to implement last_login with PostgreSQL and I found an old thread from June 2019. I have found a simple solution that I want to share with you:
I followed the instructions on how to set up a last_login on the official documentation. Therefor I creates a very simple table having userid and last_login fields. Added plugin and dict information.
I received the duplicate key errors
2019 May 19
0
Dict issue with PostgreSQL for last_login plugin (duplicate key)
??????? Original Message ???????
On Sunday, May 19, 2019 4:44 PM, John Fawcett via dovecot <dovecot at dovecot.org> wrote:
> I don't have PostgresSql, would you be able to verify if this syntax would work: INSERT INTO last_logins (last_login,username,domain) VALUES (1558273000,'user at domain.tld','domain.tld') ON CONFLICT(username) UPDATE SET
2019 May 19
0
Dict issue with PostgreSQL for last_login plugin (duplicate key)
On 19/05/2019 15:42, mabi via dovecot wrote:
> ??????? Original Message ???????
> On Sunday, May 19, 2019 2:58 PM, John Fawcett via dovecot <dovecot at dovecot.org> wrote:
>
>> I guess it is not supported for PostgreSQL or Sqlite, since they don't
>> have "ON DUPLICATE KEY UPDATE" statement which is what is being used in
>> MySQL.
> That's it,
2017 Apr 28
2
Dovecot last_login plugin and Mysql
Hello,
Is anyone using the last_login plugin with a Mysql database? I'd like
to track when users were last on the system.
Thanks.
Dave.
2019 May 19
0
Dict issue with PostgreSQL for last_login plugin (duplicate key)
> On 19 May 2019 16:42 mabi via dovecot <dovecot at dovecot.org> wrote:
>
>
> ??????? Original Message ???????
> On Sunday, May 19, 2019 2:58 PM, John Fawcett via dovecot <dovecot at dovecot.org> wrote:
>
> > I guess it is not supported for PostgreSQL or Sqlite, since they don't
> > have "ON DUPLICATE KEY UPDATE" statement which is what
2019 May 19
2
Dict issue with PostgreSQL for last_login plugin (duplicate key)
On 19/05/2019 16:25, John Fawcett via dovecot wrote:
> INSERT INTO last_logins (last_login,username,domain) VALUES (1558273000,'user at domain.tld','domain.tld')
I don't have PostgresSql, would you be able to verify if this syntax would work:
INSERT INTO last_logins (last_login,username,domain) VALUES (1558273000,'user at domain.tld','domain.tld')
2019 May 19
4
Dict issue with PostgreSQL for last_login plugin (duplicate key)
??????? Original Message ???????
On Sunday, May 19, 2019 2:58 PM, John Fawcett via dovecot <dovecot at dovecot.org> wrote:
> I guess it is not supported for PostgreSQL or Sqlite, since they don't
> have "ON DUPLICATE KEY UPDATE" statement which is what is being used in
> MySQL.
That's it, PostgreSQL does not have "ON DUPLICATE KEY" but instead uses
2014 Nov 11
1
Help with last_login plugin
Hi,
I want to have a datetime column in my users table, to have the value
updated every time my users login via POP3/IMAP.
Last_login is new but I don't see any query example, or field names or so.
Does anyone can give an help on this?
Thanks,