├── .gitignore ├── .gitlab-ci.yml ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── ChangeLog ├── ChangeLog-2004-2007 ├── ChangeLog.pre-1.0.0 ├── HACKING ├── INSTALL ├── MAINTAINERS ├── Makefile.am ├── NEWS ├── README-CardDAV.md ├── README.md ├── TODO ├── TRANSLATABLE_FILES ├── acinclude.m4 ├── autogen.sh ├── balsa-mail-style.xml ├── balsa-mail.lang ├── balsa-mailto-handler.desktop.in.in ├── balsa.1.in ├── balsa.doap ├── balsa.spec.in ├── bootstrap.sh ├── configure.ac ├── debian ├── balsa.install ├── changelog ├── control ├── copyright ├── not-installed ├── rules └── source │ └── format ├── doc ├── .cvsignore ├── C │ ├── .cvsignore │ ├── Makefile.am │ ├── ab-conf.page │ ├── authors.page │ ├── balsa-C.omf │ ├── balsa.entities │ ├── balsa.xml │ ├── common-tasks.page │ ├── fdl-appendix.xml │ ├── figures │ │ ├── address-book-ldap.png │ │ ├── address-book-modify.png │ │ ├── address-book-vcard.png │ │ ├── address-book.png │ │ ├── balsa_logo.png │ │ ├── druid-start.png │ │ ├── example-alias.png │ │ ├── figuresdobaaddress-book-modify.png │ │ ├── main-window-toolbar.png │ │ ├── main-window.png │ │ ├── message-window.png │ │ ├── msg-part-select.png │ │ ├── newmsg-window-attachments.png │ │ ├── newmsg-window-toolbar.png │ │ ├── newmsg-window.png │ │ ├── preferences-window.png │ │ └── spell-check.png │ ├── folder-config.page │ ├── getting-started.page │ ├── glossary.page │ ├── identities.page │ ├── index.page │ ├── introduction.page │ ├── its-not-working.page │ ├── mbox-formats.page │ ├── preferences-address-books.page │ ├── preferences-display-options.page │ ├── preferences-mail-options.page │ ├── preferences-miscellaneous.page │ ├── preferences-spelling.page │ ├── preferences-startup.page │ ├── preferences.page │ ├── toolbar-prefs.page │ ├── win-composer.page │ ├── win-filters.page │ ├── win-main.page │ ├── win-message.page │ ├── win-run-filters.page │ └── win-search.page ├── ChangeLog ├── LINGUAS ├── Makefile.am ├── balsa.omf.in ├── cs │ └── cs.po ├── de │ ├── de.po │ └── figures │ │ └── druid-start.png ├── el │ └── el.po ├── es │ └── es.po ├── fr │ ├── figures │ │ ├── address-book-ldap.png │ │ ├── address-book-modify.png │ │ ├── address-book-vcard.png │ │ ├── address-book.png │ │ ├── druid-start.png │ │ ├── main-window-toolbar.png │ │ ├── main-window.png │ │ ├── message-window.png │ │ ├── msg-part-select.png │ │ ├── newmsg-window-attachments.png │ │ ├── newmsg-window-toolbar.png │ │ ├── newmsg-window.png │ │ └── spell-check.png │ └── fr.po ├── meson.build ├── omf.make ├── sl │ └── sl.po ├── sv │ └── sv.po └── xmldocs.make ├── docs ├── README.SSL ├── mailbox.txt ├── mh-mail-HOWTO ├── pine2vcard └── vconvert.awk ├── gnome-balsa2.png ├── help ├── .cvsignore ├── C │ ├── .cvsignore │ ├── Makefile.am │ ├── README │ ├── balsa.sgml │ ├── images │ │ ├── .cvsignore │ │ ├── address-book-ldap.png │ │ ├── address-book-modify.png │ │ ├── address-book-start.png │ │ ├── address-book-vcard.png │ │ ├── address-book.png │ │ ├── balsa_logo.png │ │ ├── druid-start.png │ │ ├── example-alias.png │ │ ├── main-window-toolbar.png │ │ ├── main-window.png │ │ ├── newmsg-window-attachments.png │ │ ├── newmsg-window-toolbar.png │ │ ├── newmsg-window.png │ │ ├── preferences-window.png │ │ └── spell-check.png │ ├── stylesheet-images │ │ ├── caution.gif │ │ ├── home.gif │ │ ├── important.gif │ │ ├── next.gif │ │ ├── note.gif │ │ ├── prev.gif │ │ ├── tip.gif │ │ ├── toc-blank.gif │ │ ├── toc-minus.gif │ │ ├── toc-plus.gif │ │ ├── up.gif │ │ └── warning.gif │ └── topic.dat ├── Makefile.am └── sl │ └── sl.po ├── images ├── .cvsignore ├── 16x16 │ ├── .cvsignore │ ├── Makefile.am │ ├── balsa-encrypted.png │ ├── balsa-mark-all.png │ ├── balsa-mbox-draft.png │ ├── balsa-mbox-sent.png │ ├── balsa-mbox-tray-empty.png │ ├── balsa-mbox-tray-full.png │ ├── balsa-next-flagged.png │ ├── balsa-next-part.png │ ├── balsa-next-unread.png │ ├── balsa-next.png │ ├── balsa-postpone.png │ ├── balsa-previous-part.png │ ├── balsa-previous.png │ ├── balsa-reply-all.png │ ├── balsa-send-queued.png │ ├── balsa-signature-bad.png │ ├── balsa-signature-good.png │ ├── balsa-signature-notrust.png │ ├── balsa-signature-unknown.png │ ├── mail-inbox.png │ ├── mail-outbox.png │ ├── mail-queue.png │ ├── meson.build │ ├── stock_book_open.png │ ├── stock_book_red.png │ ├── stock_contact.png │ ├── stock_mail-receive.png │ └── stock_mail.png ├── 24x24 │ ├── .cvsignore │ ├── Makefile.am │ ├── balsa-crypt-check.png │ ├── balsa-encrypt.png │ ├── balsa-encrypted.png │ ├── balsa-mark-all.png │ ├── balsa-marked-new.png │ ├── balsa-next-flagged.png │ ├── balsa-next-part.png │ ├── balsa-next-unread.png │ ├── balsa-next.png │ ├── balsa-postpone.png │ ├── balsa-preview.png │ ├── balsa-previous-part.png │ ├── balsa-previous.png │ ├── balsa-reply-all.png │ ├── balsa-send-queued.png │ ├── balsa-sign.png │ ├── balsa-signature-bad.png │ ├── balsa-signature-good.png │ ├── balsa-signature-notrust.png │ ├── balsa-signature-unknown.png │ ├── balsa-trash-empty.png │ ├── mail-queue.png │ ├── meson.build │ ├── stock_book_blue.png │ ├── stock_book_green.png │ ├── stock_book_open.png │ ├── stock_book_red.png │ ├── stock_book_yellow.png │ ├── stock_contact.png │ ├── stock_mail-receive.png │ ├── stock_mail.png │ └── stock_view-fields.png ├── Makefile.am ├── attachment.png ├── balsa-logo.png ├── balsa-top.png ├── balsa-watermark.png ├── balsa_attention.png ├── balsa_icon.png ├── balsa_logo.png ├── meson.build └── mimetypes │ ├── .cvsignore │ ├── Makefile.am │ ├── application-pgp-signature.png │ ├── application-pkcs7-mime.png │ ├── application-pkcs7-signature.png │ ├── application-x-pkcs7-signature.png │ ├── meson.build │ ├── message-disposition-notification.png │ ├── message-external-body.png │ ├── message.png │ ├── multipart-alternative.png │ ├── multipart-encrypted.png │ ├── multipart-signed.png │ └── multipart.png ├── libbalsa ├── .cvsignore ├── Makefile.am ├── abook-completion.c ├── abook-completion.h ├── address-book-carddav.c ├── address-book-carddav.h ├── address-book-extern.c ├── address-book-extern.h ├── address-book-gpe.c ├── address-book-gpe.h ├── address-book-ldap.c ├── address-book-ldap.h ├── address-book-ldif.c ├── address-book-ldif.h ├── address-book-osmo.c ├── address-book-osmo.h ├── address-book-text.c ├── address-book-text.h ├── address-book-vcard.c ├── address-book-vcard.h ├── address-book.c ├── address-book.h ├── address-view.c ├── address-view.h ├── address.c ├── address.h ├── application-helpers.c ├── application-helpers.h ├── autocrypt.c ├── autocrypt.h ├── body.c ├── body.h ├── completion.c ├── completion.h ├── dkim.c ├── dkim.h ├── files.c ├── files.h ├── filter-error.c ├── filter-file.c ├── filter-file.h ├── filter-funcs.c ├── filter-funcs.h ├── filter-private.h ├── filter.c ├── filter.h ├── folder-scanners.c ├── folder-scanners.h ├── geometry-manager.c ├── geometry-manager.h ├── gmime-application-pkcs7.c ├── gmime-application-pkcs7.h ├── gmime-filter-header.c ├── gmime-filter-header.h ├── gmime-gpgme-signature.c ├── gmime-gpgme-signature.h ├── gmime-multipart-crypt.c ├── gmime-multipart-crypt.h ├── gmime-part-rfc2440.c ├── gmime-part-rfc2440.h ├── html-filter.c ├── html-pref-db.c ├── html-pref-db.h ├── html.c ├── html.h ├── identity.c ├── identity.h ├── imap-server.c ├── imap-server.h ├── imap │ ├── .cvsignore │ ├── Makefile.am │ ├── auth-cram.c │ ├── auth-gssapi.c │ ├── imap-auth.c │ ├── imap-auth.h │ ├── imap-commands.c │ ├── imap-commands.h │ ├── imap-handle.c │ ├── imap-handle.h │ ├── imap-tls.c │ ├── imap_compress.c │ ├── imap_compress.h │ ├── imap_private.h │ ├── imap_search.c │ ├── imap_search.h │ ├── imap_tst.c │ ├── libimap.h │ ├── meson.build │ ├── siobuf-nc.h │ ├── util.c │ └── util.h ├── information.c ├── information.h ├── libbalsa-carddav.c ├── libbalsa-carddav.h ├── libbalsa-conf.c ├── libbalsa-conf.h ├── libbalsa-gpgme-cb.c ├── libbalsa-gpgme-cb.h ├── libbalsa-gpgme-keys.c ├── libbalsa-gpgme-keys.h ├── libbalsa-gpgme-widgets.c ├── libbalsa-gpgme-widgets.h ├── libbalsa-gpgme.c ├── libbalsa-gpgme.h ├── libbalsa-progress.c ├── libbalsa-progress.h ├── libbalsa-vfs.c ├── libbalsa-vfs.h ├── libbalsa-webdav.c ├── libbalsa-webdav.h ├── libbalsa.c ├── libbalsa.h ├── libbalsa_private.h ├── mailbackend.h ├── mailbox-filter.c ├── mailbox-filter.h ├── mailbox.c ├── mailbox.h ├── mailbox_imap.c ├── mailbox_imap.h ├── mailbox_local.c ├── mailbox_local.h ├── mailbox_maildir.c ├── mailbox_maildir.h ├── mailbox_mbox.c ├── mailbox_mbox.h ├── mailbox_mh.c ├── mailbox_mh.h ├── mailbox_pop3.c ├── mailbox_pop3.h ├── mailbox_remote.c ├── mailbox_remote.h ├── meson.build ├── message.c ├── message.h ├── mime-stream-shared.c ├── mime-stream-shared.h ├── mime.c ├── mime.h ├── misc.c ├── misc.h ├── missing.h ├── missing_time.c ├── padlock-keyhole.xpm ├── rfc2445.c ├── rfc2445.h ├── rfc3156.c ├── rfc3156.h ├── rfc6350.c ├── rfc6350.h ├── send.c ├── send.h ├── server-config.c ├── server-config.h ├── server.c ├── server.h ├── smtp-server.c ├── smtp-server.h ├── source-viewer.c ├── system-tray.c ├── system-tray.h ├── x509-cert-widget.c └── x509-cert-widget.h ├── libinit_balsa ├── .cvsignore ├── Makefile.am ├── README ├── assistant_helper.c ├── assistant_helper.h ├── assistant_init.c ├── assistant_init.h ├── assistant_page_defclient.c ├── assistant_page_defclient.h ├── assistant_page_directory.c ├── assistant_page_directory.h ├── assistant_page_finish.c ├── assistant_page_finish.h ├── assistant_page_server.c ├── assistant_page_server.h ├── assistant_page_user.c ├── assistant_page_user.h ├── assistant_page_welcome.c ├── assistant_page_welcome.h └── meson.build ├── libnetclient ├── Makefile.am ├── README ├── libnetclient.dox ├── meson.build ├── net-client-pop.c ├── net-client-pop.h ├── net-client-siobuf.c ├── net-client-siobuf.h ├── net-client-smtp.c ├── net-client-smtp.h ├── net-client-utils.c ├── net-client-utils.h ├── net-client.c ├── net-client.h └── test │ ├── Makefile.am │ ├── ca_cert.pem │ ├── cert.pem │ ├── cert_u.pem │ ├── echoserver.py │ ├── inetsim-1.2.6-POP3.diff │ ├── inetsim.conf │ ├── meson.build │ ├── start-test-env.sh.in │ ├── tests.c │ └── valgrind.supp ├── logo.png ├── meson.build ├── meson_options.txt ├── org.desktop.Balsa.desktop.in.in ├── org.desktop.Balsa.metainfo.xml.in ├── org.desktop.Balsa.service.in ├── po ├── .cvsignore ├── ChangeLog ├── LINGUAS ├── Makevars ├── POTFILES.in ├── POTFILES.skip ├── TRANSLATORS ├── am.po ├── ar.po ├── az.po ├── bg.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── dz.po ├── el.po ├── en_CA.po ├── en_GB.po ├── es.po ├── et.po ├── eu.po ├── fi.po ├── fr.po ├── ga.po ├── gl.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── id.po ├── ie.po ├── it.po ├── ja.po ├── ka.po ├── ko.po ├── lt.po ├── lv.po ├── meson.build ├── mk.po ├── ml.po ├── ms.po ├── nb.po ├── ne.po ├── nl.po ├── nn.po ├── oc.po ├── pa.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── tr.po ├── uk.po ├── vi.po ├── wa.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── scan-build.sh ├── sounds ├── .cvsignore ├── Makefile.am ├── balsa.soundlist.in ├── meson.build ├── newmail.wav └── startup.wav ├── src ├── .cvsignore ├── Makefile.am ├── ab-main.c ├── ab-window.c ├── ab-window.h ├── address-book-config.c ├── address-book-config.h ├── balsa-app.c ├── balsa-app.h ├── balsa-cite-bar.c ├── balsa-cite-bar.h ├── balsa-icons.c ├── balsa-icons.h ├── balsa-index.c ├── balsa-index.h ├── balsa-mblist.c ├── balsa-mblist.h ├── balsa-message.c ├── balsa-message.h ├── balsa-mime-widget-callbacks.c ├── balsa-mime-widget-callbacks.h ├── balsa-mime-widget-crypto.c ├── balsa-mime-widget-crypto.h ├── balsa-mime-widget-image.c ├── balsa-mime-widget-image.h ├── balsa-mime-widget-message.c ├── balsa-mime-widget-message.h ├── balsa-mime-widget-multipart.c ├── balsa-mime-widget-multipart.h ├── balsa-mime-widget-text.c ├── balsa-mime-widget-text.h ├── balsa-mime-widget-vcalendar.c ├── balsa-mime-widget-vcalendar.h ├── balsa-mime-widget.c ├── balsa-mime-widget.h ├── balsa-print-object-decor.c ├── balsa-print-object-decor.h ├── balsa-print-object-default.c ├── balsa-print-object-default.h ├── balsa-print-object-header.c ├── balsa-print-object-header.h ├── balsa-print-object-html.c ├── balsa-print-object-html.h ├── balsa-print-object-image.c ├── balsa-print-object-image.h ├── balsa-print-object-text.c ├── balsa-print-object-text.h ├── balsa-print-object.c ├── balsa-print-object.h ├── filter-edit-callbacks.c ├── filter-edit-dialog.c ├── filter-edit.h ├── filter-export-callbacks.c ├── filter-export-dialog.c ├── filter-export.h ├── filter-run-callbacks.c ├── filter-run-dialog.c ├── filter-run.h ├── folder-conf.c ├── folder-conf.h ├── information-dialog.c ├── information-dialog.h ├── mailbox-conf.c ├── mailbox-conf.h ├── mailbox-node.c ├── mailbox-node.h ├── main-window.c ├── main-window.h ├── main.c ├── meson.build ├── message-window.c ├── message-window.h ├── pixmaps │ ├── balsa_attachment.xpm │ ├── balsa_close_mbox.xpm │ ├── balsa_compose.xpm │ ├── balsa_continue.xpm │ ├── balsa_forward.xpm │ ├── balsa_gpg_encrypt.xpm │ ├── balsa_gpg_recheck.xpm │ ├── balsa_gpg_sign.xpm │ ├── balsa_identity.xpm │ ├── balsa_marked_all.xpm │ ├── balsa_marked_new.xpm │ ├── balsa_next.xpm │ ├── balsa_next_flagged.xpm │ ├── balsa_next_part.xpm │ ├── balsa_next_unread.xpm │ ├── balsa_postpone.xpm │ ├── balsa_previous.xpm │ ├── balsa_previous_part.xpm │ ├── balsa_print.xpm │ ├── balsa_receive.xpm │ ├── balsa_reply.xpm │ ├── balsa_reply_all.xpm │ ├── balsa_reply_group.xpm │ ├── balsa_save.xpm │ ├── balsa_send.xpm │ ├── balsa_send_receive.xpm │ ├── balsa_show_headers.xpm │ ├── balsa_show_preview.xpm │ ├── balsa_trash.xpm │ ├── balsa_trash_empty.xpm │ ├── gnome-multipart-alternative.png │ ├── gnome-multipart-mixed.png │ ├── info_attachment.xpm │ ├── info_flagged.xpm │ ├── info_forward.xpm │ ├── info_lock.xpm │ ├── info_lock_bad.xpm │ ├── info_lock_encr.xpm │ ├── info_lock_good.xpm │ ├── info_lock_sigtrust.xpm │ ├── info_new.xpm │ ├── info_read.xpm │ ├── info_replied.xpm │ ├── mbox_dir_closed.xpm │ ├── mbox_dir_open.xpm │ ├── mbox_draft.xpm │ ├── mbox_in.xpm │ ├── mbox_out.xpm │ ├── mbox_sent.xpm │ ├── mbox_trash.xpm │ ├── mbox_tray_empty.xpm │ ├── mbox_tray_full.xpm │ ├── menu_attachment.xpm │ ├── menu_compose.xpm │ ├── menu_flagged.xpm │ ├── menu_forward.xpm │ ├── menu_identity.xpm │ ├── menu_mark_all.xpm │ ├── menu_new.xpm │ ├── menu_next.xpm │ ├── menu_next_flagged.xpm │ ├── menu_next_part.xpm │ ├── menu_next_unread.xpm │ ├── menu_postpone.xpm │ ├── menu_previous.xpm │ ├── menu_previous_part.xpm │ ├── menu_print.xpm │ ├── menu_receive.xpm │ ├── menu_reply.xpm │ ├── menu_reply_all.xpm │ ├── menu_reply_group.xpm │ ├── menu_save.xpm │ ├── menu_send.xpm │ ├── menu_send_receive.xpm │ ├── other_close.xpm │ └── other_enabled.xpm ├── pref-manager.c ├── pref-manager.h ├── print-gtk.c ├── print.h ├── quote-color.c ├── quote-color.h ├── save-restore.c ├── save-restore.h ├── sendmsg-window.c ├── sendmsg-window.h ├── spell-check.c ├── spell-check.h ├── store-address.c ├── store-address.h ├── toolbar-factory.c ├── toolbar-factory.h ├── toolbar-prefs.c ├── toolbar-prefs.h ├── xdg-folders.c └── xdg-folders.h ├── ui ├── Makefile.am ├── ab-main.ui ├── balsa-ab.gresource.xml ├── balsa.gresource.xml ├── main-window.ui ├── message-window.ui ├── sendmsg-window.ui └── source-viewer.ui ├── uncrustify.cfg └── website └── faq.html /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | 3 | *.o 4 | *.lo 5 | *.la 6 | *.a 7 | *.lo 8 | *.la 9 | *.gmo 10 | *.omf 11 | *.stamp 12 | 13 | doc/*/*.mo 14 | doc/*/*.xml 15 | doc/??/*.page 16 | 17 | .deps 18 | .libs 19 | Makefile 20 | Makefile.in 21 | 22 | COPYING 23 | aclocal.m4 24 | autom4te.cache/ 25 | balsa-mailto-handler.desktop 26 | balsa-mailto-handler.desktop.in 27 | balsa.1 28 | balsa.appdata.xml 29 | balsa.desktop 30 | balsa.desktop.in 31 | balsa.spec 32 | compile 33 | config.guess 34 | config.h 35 | config.h.in 36 | config.log 37 | config.status 38 | config.sub 39 | configure 40 | depcomp 41 | install-sh 42 | libbalsa/imap/imap_tst 43 | libbalsa/imap/libimap-marshal.c 44 | libbalsa/imap/libimap-marshal.h 45 | libbalsa/libbalsa-marshal.c 46 | libbalsa/libbalsa-marshal.h 47 | libtool 48 | ltmain.sh 49 | m4/ 50 | missing 51 | mkinstalldirs 52 | po/Makefile.in.in 53 | po/POTFILES 54 | po/stamp-it 55 | sounds/balsa.soundlist 56 | src/balsa 57 | src/balsa-ab 58 | stamp-h1 59 | autoscan.log 60 | configure.scan 61 | gnome-doc-utils.make 62 | libnetclient/test/start-test-env.sh 63 | org.desktop.Balsa.desktop 64 | org.desktop.Balsa.desktop.in 65 | org.desktop.Balsa.metainfo.xml 66 | org.desktop.Balsa.service 67 | po/Makevars.template 68 | po/Rules-quot 69 | po/balsa.pot 70 | po/*.sed 71 | po/*.header 72 | po/*.sin 73 | po/stamp-po 74 | src/balsa-*resources.c 75 | debian/.debhelper/** 76 | debian/*.log 77 | debian/*.substvars 78 | debian/balsa/** 79 | debian/debhelper-build-stamp 80 | debian/files 81 | debian/tmp/** 82 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | https://wiki.gnome.org/Newcomers/SubmitContribution -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- 1 | Author list is in AUTHORS. This is just to keep bugzilla.gnome.org happy 2 | 3 | Full Name Balsa Maintainer 4 | E-mail: balsa-maint theochem kth se 5 | Userid: pawels 6 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | TODO LIST: 2 | 3 | Milestone 1.4 targets: 4 | ---------------------- 5 | - Merge upcoming stable mutt into libmutt 6 | - Filters 7 | - have pop3 mailbox indexes on servers that support it 8 | - split server/mailbox configuration logically, redo secure connection 9 | settings 10 | - decent mailing list support at address book and alias expansion levels. 11 | (LDIF/LDAP seems to be the most apriopriate file format). 12 | 13 | New features/unfinished things: 14 | ------------------------------- 15 | - [PARTIAL] Filters (patches semi-ready) 16 | - [PARTIAL] CORBA (for intelligent handling of multiple instances of balsa). 17 | - IMAP - update message flags immediately. Client-side caching 18 | - migrate to gnome-vfs, currently used gnome-mime is buggy. 19 | 20 | UI: 21 | --- 22 | - Incorporate use of GNOME Docklet to indicate status of unread mail, 23 | status, etc. 24 | 25 | - inline images (patch in bugzilla) 26 | 27 | - Split Preferences window into several more managable chunks. 28 | 29 | -------------------------------------------------------------------------------- /TRANSLATABLE_FILES: -------------------------------------------------------------------------------- 1 | sounds/balsa.soundlist 2 | balsa.desktop 3 | README 4 | NEWS 5 | help/C/balsa.sgml 6 | -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- 1 | AC_DEFUN([AM_HDR_SIGACTION], 2 | [AC_CACHE_CHECK([for sigaction.h], am_cv_hdr_sigaction, 3 | [AC_TRY_LINK([#include ], 4 | [int i = 0;], 5 | am_cv_hdr_sigaction=yes, 6 | am_cv_hdr_sigaction=no)]) 7 | if test $am_cv_hdr_sigaction = yes; then 8 | AC_DEFINE(HAVE_SIGACTION_H) 9 | fi 10 | ]) 11 | 12 | AC_DEFUN([AM_HDR_SIGSET], 13 | [AC_CACHE_CHECK([for sigset.h], am_cv_hdr_sigset, 14 | [AC_TRY_LINK([#include ], 15 | [int i = 0;], 16 | am_cv_hdr_sigset=yes, 17 | am_cv_hdr_sigset=no)]) 18 | if test $am_cv_hdr_sigset = yes; then 19 | AC_DEFINE(HAVE_SIGSET_H) 20 | fi 21 | ]) 22 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | # bootstrap file to be used when autogen.sh fails. 3 | test -n "$srcdir" || srcdir=`dirname "$0"` 4 | test -n "$srcdir" || srcdir=. 5 | 6 | olddir=`pwd` 7 | 8 | cd $srcdir 9 | 10 | echo "Running gettextize... Ignore non-fatal messages." 11 | gettextize --force --no-changelog || exit 1 12 | echo "Running libtoolize..." 13 | libtoolize --force || exit 1 14 | echo "Running aclocal..." 15 | aclocal || exit 1 16 | echo "Running autoconf..." 17 | autoconf || exit 1 18 | echo "Running autoheader..." 19 | autoheader || exit 1 20 | echo "Running automake..." 21 | automake --gnu --add-missing --copy || exit 1 22 | 23 | cd $olddir 24 | 25 | echo "Running configure $* ..." 26 | exec $srcdir/configure "$@" 27 | -------------------------------------------------------------------------------- /balsa-mail-style.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | Albrecht Dreß 26 | <_description>Colour scheme for Balsa messages structured phrases 27 |