]> git.pld-linux.org Git - packages/msmtp.git/blob - msmtp.spec
- 0.5.3
[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:        0.5.3
5 Release:        1
6 License:        GPL
7 Group:          Networking/Daemons
8 Source0:        http://dl.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
9 # Source0-md5:  97699b1a18fcb915585ba2cf38a9358d
10 URL:            http://msmtp.sourceforge.net/
11 BuildRequires:  openssl-devel
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 msmtp is a simple program that works as an "SMTP plugin" for Mutt and
16 probably other MUAs (mail user agents). It forwards mails to an SMTP
17 server (for example at a free mail provider) which does the delivery.
18 Features include:
19 - SMTP AUTH methods PLAIN, LOGIN and CRAM-MD5
20 - TLS encrypted connections
21 - IPv6 support
22 - robustness
23 - detailed error messages if something goes wrong (including the full
24   answer of the SMTP server)
25 - sendmail compatible exit codes (which most MUAs understand).
26
27 Simply tell your MUA to call msmtp instead of /usr/sbin/sendmail (with
28 Mutt that's just one additional line in the config file).
29
30 %description -l pl
31 msmtp to prosty program dzia³aj±cy jako "wtyczka SMTP" dla Mutta i
32 prawdopodobnie innych klientów pocztowych (MUA - mail user agents).
33 Przekierowuje wiadomo¶ci do serwera SMTP (na przyk³ad providera
34 darmowych kont e-mail), który je dostarcza. Mo¿liwo¶ci obejmuj±:
35 - obs³ugê SMTP AUTH - metod PLAIN, LOGIN i CRAM-MD5
36 - szyfrowane po³±czenia TLS
37 - obs³ugê IPv6
38 - szczegó³owe komunikaty b³êdów w przypadku niepowodzenia (w³±cznie z
39   pe³n± odpowiedzi± serwera SMTP)
40 - kody wyj¶cia kompatybilne z sendmailem (które rozumie wiêkszo¶æ
41   MUA).
42
43 Wystarczy przekazaæ klientowi pocztowemu, aby wywo³ywa³ msmtp zamiast
44 /usr/sbin/sendmail (w Mutcie to po prostu dodatkowa linia w pliku
45 konfiguracyjnym).
46
47 %prep
48 %setup -q
49
50 %build
51 %{__make} \
52         CC="%{__cc}" \
53         CFLAGS="%{rpmcflags}"
54
55 %install
56 rm -rf $RPM_BUILD_ROOT
57 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
58
59 install msmtp $RPM_BUILD_ROOT%{_bindir}/msmtp
60 install msmtp.1 $RPM_BUILD_ROOT%{_mandir}/man1
61
62 %clean
63 rm -rf $RPM_BUILD_ROOT
64
65 %files
66 %defattr(644,root,root,755)
67 %doc AUTHORS ChangeLog README THANKS
68 %attr(755,root,root) %{_bindir}/*
69 %{_mandir}/man1/msmtp*
This page took 0.09956 seconds and 4 git commands to generate.