summary refs log tree commit diff
path: root/nixos/modules/services/networking/offlineimap.nix
diff options
context:
space:
mode:
authorDamien Cassou <damien@cassou.me>2016-08-01 09:37:53 +0200
committerDamien Cassou <damien@cassou.me>2016-08-01 09:37:53 +0200
commit19af5b444ebc0a4bbd8e848081a6700e13ba08ef (patch)
tree169fc1b8ab7d7cc771fa4be021c1abb757b9e61c /nixos/modules/services/networking/offlineimap.nix
parent8c735c3aee87ec6908e91f651bfad2b7fa067146 (diff)
downloadnixpkgs-19af5b444ebc0a4bbd8e848081a6700e13ba08ef.tar
nixpkgs-19af5b444ebc0a4bbd8e848081a6700e13ba08ef.tar.gz
nixpkgs-19af5b444ebc0a4bbd8e848081a6700e13ba08ef.tar.bz2
nixpkgs-19af5b444ebc0a4bbd8e848081a6700e13ba08ef.tar.lz
nixpkgs-19af5b444ebc0a4bbd8e848081a6700e13ba08ef.tar.xz
nixpkgs-19af5b444ebc0a4bbd8e848081a6700e13ba08ef.tar.zst
nixpkgs-19af5b444ebc0a4bbd8e848081a6700e13ba08ef.zip
offlineimap's module: change UI to syslog
The 'syslog' UI "allows better integration with systemd":
http://www.offlineimap.org/doc/Changelog.html#offlineimap-v660-rc2-2015-10-15
Diffstat (limited to 'nixos/modules/services/networking/offlineimap.nix')
-rw-r--r--nixos/modules/services/networking/offlineimap.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/offlineimap.nix b/nixos/modules/services/networking/offlineimap.nix
index 31ce9280f31..daf6196d370 100644
--- a/nixos/modules/services/networking/offlineimap.nix
+++ b/nixos/modules/services/networking/offlineimap.nix
@@ -54,7 +54,7 @@ in {
       description = "Offlineimap: a software to dispose your mailbox(es) as a local Maildir(s)";
       serviceConfig = {
         Type      = "oneshot";
-        ExecStart = "${cfg.package}/bin/offlineimap -u basic -o -1";
+        ExecStart = "${cfg.package}/bin/offlineimap -u syslog -o -1";
         TimeoutStartSec = cfg.timeoutStartSec;
       };
       path = cfg.path;