]> git.pld-linux.org Git - packages/msmtp.git/blob - msmtp.spec
- run fix-info-dir in postun as well
[packages/msmtp.git] / msmtp.spec
1 Summary:        SMTP "plugin" for MUAs
2 Summary(pl):    "Wtyczka" SMTP dla klientów pocztowych (MUA)
3 Name:           msmtp
4 Version:        1.4.2
5 Release:        0.1
6 License:        GPL
7 Group:          Networking/Daemons
8 Source0:        http://dl.sourceforge.net/msmtp/%{name}-%{version}.tar.bz2
9 # Source0-md5:  3db095102259103e4eb48fc0c7d21618
10 Patch0:         %{name}-home_etc.patch
11 URL:            http://msmtp.sourceforge.net/
12 BuildRequires:  autoconf >= 2.50
13 BuildRequires:  automake
14 BuildRequires:  openssl-devel >= 0.9.7d
15 BuildRequires:  pkgconfig
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 msmtp is a simple program that works as an "SMTP plugin" for Mutt and
20 probably other MUAs (mail user agents). It forwards mails to an SMTP
21 server (for example at a free mail provider) which does the delivery.
22 Features include:
23 - SMTP AUTH methods PLAIN, LOGIN and CRAM-MD5
24 - TLS encrypted connections
25 - IPv6 support
26 - robustness
27 - detailed error messages if something goes wrong (including the full
28   answer of the SMTP server)
29 - sendmail compatible exit codes (which most MUAs understand).
30
31 Simply tell your MUA to call msmtp instead of /usr/sbin/sendmail (with
32 Mutt that's just one additional line in the config file).
33
34 %description -l pl
35 msmtp to prosty program dzia³aj±cy jako "wtyczka SMTP" dla Mutta i
36 prawdopodobnie innych klientów pocztowych (MUA - mail user agents).
37 Przekierowuje wiadomo¶ci do serwera SMTP (na przyk³ad providera
38 darmowych kont e-mail), który je dostarcza. Mo¿liwo¶ci obejmuj±:
39 - obs³ugê SMTP AUTH - metod PLAIN, LOGIN i CRAM-MD5
40 - szyfrowane po³±czenia TLS
41 - obs³ugê IPv6
42 - szczegó³owe komunikaty b³êdów w przypadku niepowodzenia (w³±cznie z
43   pe³n± odpowiedzi± serwera SMTP)
44 - kody wyj¶cia kompatybilne z sendmailem (które rozumie wiêkszo¶æ
45   MUA).
46
47 Wystarczy przekazaæ klientowi pocztowemu, aby wywo³ywa³ msmtp zamiast
48 /usr/sbin/sendmail (w Mutcie to po prostu dodatkowa linia w pliku
49 konfiguracyjnym).
50
51 %prep
52 %setup -q
53 %patch0 -p1
54
55 %build
56 %{__aclocal} -I gnulib/m4
57 %{__autoconf}
58 %{__autoheader}
59 %{__automake}
60 # could use gnutls instead (but is not ready for current libgcrypt)
61 # disable gsasl for now (see README.gsasl)
62 %configure \
63         --with-ssl=openssl \
64         --disable-gsasl
65 %{__make}
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
70
71 %{__make} install \
72         DESTDIR=$RPM_BUILD_ROOT
73
74 %find_lang %{name}
75
76 %clean
77 rm -rf $RPM_BUILD_ROOT
78
79 %post
80 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
81
82 %postun
83 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
84
85 %files -f %{name}.lang
86 %defattr(644,root,root,755)
87 %doc AUTHORS ChangeLog README THANKS doc/msmtprc-{system,user}.example
88 %attr(755,root,root) %{_bindir}/*
89 %{_mandir}/man1/msmtp*
90 %{_infodir}/msmtp*
This page took 0.124086 seconds and 4 git commands to generate.