From d558ddefba9a384e9e59855e8b6acaeb2fe9f5fd Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 31 Oct 2013 11:34:14 -0500 Subject: [PATCH] re-add README.fedora --- .gitignore | 1 - README.fedora | 30 ++++++++++++++++++++++++++++++ alpine.spec | 10 ++++++++-- 3 files changed, 38 insertions(+), 3 deletions(-) create mode 100644 README.fedora diff --git a/.gitignore b/.gitignore index be8af2a..c32062f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ alpine-2.00.tar.bz2 /re-alpine-2.02.tar.bz2 -/README.fedora /re-alpine-2.03.tar.bz2 /alpine-2.10.clean.tar.lzma diff --git a/README.fedora b/README.fedora new file mode 100644 index 0000000..9b3c96c --- /dev/null +++ b/README.fedora @@ -0,0 +1,30 @@ + += mlock = +If you get a notice "[Folder vulnerable - directory /var/mail must have 1777 protection]", you may want install the uw-imap-utils package to get setgid mlock (BZ #427561) + + += maildir support = +I'd like to stay out of it... just search "Mark Crispin maildir" for the gory details. No open license maildir patch exists for alpine. As a workaround, you can install a localhost IMAP server such as dovecot or courier to serve maildir folders, and connect to localhost from alpine via IMAP. + + +An example pinerc line: + mymaildir {localhost/ssl/novalidate-cert/user=myusername}[], + +Example /etc/dovecot.conf with only IMAPS: + +auth_verbose = yes +verbose_ssl = yes +mail_location = maildir:~/Maildir +protocols = imaps +# put cert in /etc/pki/dovecot/certs +protocol imap { +} +auth default { +mechanisms = plain +passdb pam { +} +userdb passwd { +} +user = root +} + diff --git a/alpine.spec b/alpine.spec index fd3852d..e6d4cbd 100644 --- a/alpine.spec +++ b/alpine.spec @@ -3,7 +3,7 @@ Summary: powerful, easy to use console email client Name: alpine Version: 2.10 -Release: 3%{?dist} +Release: 4%{?dist} License: ASL 2.0 Group: Applications/Internet @@ -12,7 +12,7 @@ Group: Applications/Internet #Source0: http://downloads.sourceforge.net/sourceforge/re-alpine/re-alpine-%{version}%{?pre}.tar.bz2 URL: http://patches.freeiz.com/alpine/info/alpine.html Source0: http://patches.freeiz.com/alpine/patches/alpine-2.10/alpine-%{version}.clean.tar.lzma - +Source1: README.fedora # Using "Conflicts" instead of Obsoletes because while alpine is substantially # compatible with pine the change to Unicode breaks important user @@ -70,6 +70,8 @@ GNU Build System's autotools. %prep %setup -q -n alpine-%{version} +install -m644 -p %{SOURCE1} . + #autoreconf -f -i @@ -108,6 +110,7 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README LICENSE doc/tech-notes.txt +%doc README.fedora %ghost %config(noreplace) %{_sysconfdir}/pine.conf %ghost %config(noreplace) %{_sysconfdir}/pine.conf.fixed %{_bindir}/alpine @@ -123,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Oct 31 2013 Rex Dieter 2.10-4 +- re-add README.fedora + * Sat Aug 03 2013 Dennis Gilmore - 2.10-3 - remove refrences to non existant README.fedora file