Rspamd webUI: how to show older records?

Discussion in 'Tips/Tricks/Mods' started by recin, May 10, 2021.

Tags:
  1. recin

    recin Active Member

    I have a brand new Ubuntu 20.04 with ISPConfig 3.2.4 and apache installed following the automated installation tutorial.
    Rspamd webUI only show records from the last 2 hours. How can I do to show older records, ie last 2 days instead of only two hours?
     
  2. Th0m

    Th0m ISPConfig Developer Staff Member ISPConfig Developer

    Code:
    echo 'servers = "127.0.0.1";' > /etc/rspamd/local.d/redis.conf
    echo "nrows = 2500;" > /etc/rspamd/local.d/history_redis.conf
    echo "compress = true;" >> /etc/rspamd/local.d/history_redis.conf
    to show the last 2500 incoming mails.
     
  3. recin

    recin Active Member

    It works. Thanks a lot
     

Share This Page