Add timer to check my mail periodically
This commit is contained in:
parent
0674303198
commit
0f94d0b884
2 changed files with 18 additions and 0 deletions
9
systemd/.config/systemd/user/mbsync.service
Normal file
9
systemd/.config/systemd/user/mbsync.service
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Unit]
|
||||
Description=synchronize IMAP4 and Maildir mailboxes
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/bin/mbsync -aqV
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
9
systemd/.config/systemd/user/mbsync.timer
Normal file
9
systemd/.config/systemd/user/mbsync.timer
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Unit]
|
||||
Description=Run mbsync every minute
|
||||
|
||||
[Timer]
|
||||
OnBootSec=1s
|
||||
OnUnitActiveSec=1min
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
Loading…
Reference in a new issue