Re: systemd timer not working

2022-07-21 Thread Max Gautier
%i.target [Service] Type=oneshot ExecStart=/usr/bin/mbsync -c %E/mbsync/config -V %i Restart=on-failure RestartSec=30 SyslogIdentifier=mbsync-%i Slice=app-mailsync-%i.slice [Install] RequiredBy=mail-sync@.target -- Max Gautier ___ isync-devel mailing list isync-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/isync-devel

Re: systemd timer not working

2022-07-15 Thread Max Gautier
; Unit=mbsync.service That's not needed, the default is to trigger the service with matching unsuffixed name -- Max Gautier ___ isync-devel mailing list isync-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/isync-devel

Re: beta testing for 1.4 release; short-term roadmap

2020-08-14 Thread Max Gautier
On Tue, Aug 04, 2020 at 06:47:34PM +0200, Oswald Buddenhagen wrote: > i'm particularly interested in merging max' utf-7 work (with a possible > utf-8 followup), which i'll finish myself if i have to. I'll have some time next week, I'll try to have something for you by the end of September. _

Re: [PATCH] add support for built-in oauthbearer auth mechanism

2020-08-06 Thread Max Gautier
mechanism support. Building it is fairly standard, so it should not be hard to package it on other distributions (technically, at least). [1]: https://github.com/moriyoshi/cyrus-sasl-xoauth2 Max Gautier ___ isync-devel mailing list isync-devel

Re: Add support for UTF8=ACCEPT imap extension (was: add support for IMAP UTF-7)

2020-06-05 Thread Max Gautier
On Tue, Jun 02, 2020 at 01:00:55AM +0200, Oswald Buddenhagen wrote: > On Mon, Jun 01, 2020 at 06:55:36PM +0200, ashelia1...@gmail.com wrote: > > Starting from the UTF7 module in the glibc and modifying it for > > UTF7 IMAP does not seem too hard. > > > i'd do that, but i wouldn't bother trying to

Add support for UTF8=ACCEPT imap extension (was: add support for IMAP UTF-7)

2020-05-30 Thread Max Gautier
for IMAP) correctly, the server is supposed to ignore unknowns extension, so checking for ENABLE might be enough (section 3.1). [1]: https://tools.ietf.org/html/rfc6855 [2]: https://tools.ietf.org/html/rfc5161 Max Gautier --- src/drv_imap.c | 15 +-- 1 file changed, 13 insertions

[PATCH 3/4] Add ^ encoding specifier to imap_vprintf

2020-04-30 Thread Max Gautier
--- src/drv_imap.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/src/drv_imap.c b/src/drv_imap.c index f50e0a5..3332e4c 100644 --- a/src/drv_imap.c +++ b/src/drv_imap.c @@ -597,6 +597,17 @@ imap_vprintf( const char *fmt, va_list ap )

[PATCH 4/4] Use utf7 encoding for select

2020-04-30 Thread Max Gautier
--- src/drv_imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drv_imap.c b/src/drv_imap.c index 3332e4c..33c9e85 100644 --- a/src/drv_imap.c +++ b/src/drv_imap.c @@ -2520,7 +2520,7 @@ imap_open_box( store_t *gctx, INIT_IMAP_CMD(imap_cmd_open_box_t, cmd, cb, aux

[PATCH 2/4] Use decode_utf7_imap to obtain list of boxes

2020-04-30 Thread Max Gautier
--- src/drv_imap.c | 7 +++ src/main.c | 2 ++ 2 files changed, 9 insertions(+) diff --git a/src/drv_imap.c b/src/drv_imap.c index 918dead..f50e0a5 100644 --- a/src/drv_imap.c +++ b/src/drv_imap.c @@ -1371,6 +1371,7 @@ parse_list_rsp_p2( imap_store_t *ctx, list_t *list, char *cmd ATTR_UN

[PATCH 1/4] Add decode/encode_utf7_imap functions

2020-04-30 Thread Max Gautier
--- src/drv_imap.c | 118 + 1 file changed, 118 insertions(+) diff --git a/src/drv_imap.c b/src/drv_imap.c index 7bc88f6..918dead 100644 --- a/src/drv_imap.c +++ b/src/drv_imap.c @@ -35,6 +35,8 @@ #include #include #include +#include +#includ

add support for IMAP UTF-7 (for internationalized mailbox names)

2020-04-30 Thread Max Gautier
others ?) Thanks to let me know if I'm doing it wrong or have missed something. Max Gautier Patches in the follow-ups. ___ isync-devel mailing list isync-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/isync-devel