[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: MS Exchange -> empty Server Buffer
> (setq gnus-secondary-select-methods
> '((nnml "")
> (nnimap "usc"
> (nnimap-server-address "jerusalem.ira.uka.de")
> (nnimap-list-pattern ("INBOX"=20
> "/usc")))))
> and i also tried without nnimap-list-pattern with the same effect. Am
> i doing something wrong? Does nnimap work with Exchange Servers?
You need to use the wild card character "*" unless "/usc" is the name of
the only mailbox you want to access:
(setq gnus-secondary-select-methods
'((nnml "")
(nnimap "usc"
(nnimap-server-address "jerusalem.ira.uka.de")
(nnimap-list-pattern ("INBOX" "/usc/*")))))
Good Luck,
-Jim