One of the features I really like about GNU Mailutils is that I can build
with only the required features.
I like this because it makes things smaller, leaner and reults in a smaller
potential "attack surface".
So I disabled POP, MH, Maildir when I built GNU Mailutils.
But the Guile module (mailutils mailutils) tries to load the dynamic
libraries associated with the disabled features anyway, and this in turn
makes (mailutils mailutils) fail to load properly, thus is not accessible.
I commented out the problem statements
guile/site/2.0/mailutils/mailutils.scm, restarted Guile and (use-modules
(mailutils mailutils)), now things seem to work better.
(define mu-libs (list (cons "libmailutils" "libmailutils")
(cons "libmu_auth" "libmu_auth")
(cons "libproto/mbox" "libmu_mbox")
;; (cons "libproto/mh" "libmu_mh")
;; (cons "libproto/maildir" "libmu_maildir")
;; (cons "libproto/pop" "libmu_pop")
(cons "libproto/imap" "libmu_imap")))
Just in case you weren't aware, please forgive if this is a known issue,
but I didn't see it in the bug tracker.
Sincerely,
Chris
_______________________________________________
Bug-mailutils mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-mailutils