======Database query to view autoresponder condition enable history======
At a command prompt in the VPOP3 directory run
psql
(The password is 'vpop3pass')
Then, type
select * from users.users;
Take note of the 'usernumber' for the relevant user
select * from users.autoresponderconditions where usernumber=;
Take note of the 'condid' for the relevant autoresponder condition
select (xpath('/ss_new/ruleenabled/text()', newrow))[1] as enabled,
(regexp_match(updateuser, ' \((.*?)\)'))[1] as updateuser,updatetime
from settingaudit where tablename='users.autoresponderconditions'
and keyfield='' order by id desc limit 100;
N.B. VPOP3 does not need to be stopped while you do this