Re: add multiple imap connection to mutt

2017-09-24 Thread Yubin Ruan
Maybe my email subscription is not working? Please ignore this mail if it is duplicate. 2017-09-24 14:38 GMT+08:00 Yubin Ruan : > Hi, > > there is a TODO in imap/TODO: > > [ -- new mail detection -- ] > >* Possibly opening multiple connections for mailbox polling, no

Re: Dropped emails to mutt mailing lists?

2017-09-24 Thread Yubin Ruan
A mail I sent at 2017-09-24 14:38 GMT+08:00 didn't show up. After that I sent a ping-mail this morning[1] and it show up. Yubin [1]: https://marc.info/?l=mutt-dev&m=150629962806111&w=2 2017-09-25 10:44 GMT+08:00 Kevin J. McCarthy : > Something seems to be a bit off with the mailing lists. I kno

'collapse-thread' and 'collapse-all': no such function in map

2017-12-25 Thread Yubin Ruan
Hi mutt developers: I have two mapping in my rc file as follow: bind pager,index - collapse-thread bind pager,index _ collapse-all but there are errors poping up when mutt start up (with the "Press any key to continue stall"...) Error in /home/yubin/.muttrc, line 225: collapse-threa

why casting pointer in mutt_mem_free

2018-03-27 Thread Yubin Ruan
In mutt/memory.c, what is point of casting ptr from (void *) to (void **)? Any ancient C technique here? void mutt_mem_free(void *ptr) { if (!ptr) return; void **p = (void **) ptr; if (*p) { free(*p); *p = 0; } } Yubin

Re: [neomutt-devel] why casting pointer in mutt_mem_free

2018-03-27 Thread Yubin Ruan
On Tue, Mar 27, 2018 at 07:35:47AM +, Pietro Cerutti wrote: > On Mar 27 18 15:04, Yubin Ruan wrote: > > In mutt/memory.c, what is point of casting ptr from (void *) to (void **)? > > Any > > ancient C technique here? > > > > void mutt_mem_free(void *ptr) &

Re: IMAP OAUTHBEARER patch

2018-06-12 Thread Yubin Ruan
On 2018-06-12 12:56, Brandon Long wrote: > And the updated patch. I don't know how to make git give me a single patch > of the entire change, so this is my three local commits appended together, > ie with git format-patch origin --stdout "git format-patch -1 HEAD" will give you one commit in a si