]> git.pld-linux.org Git - packages/dovecot.git/blob - dovecot.spec
- initial, NFY
[packages/dovecot.git] / dovecot.spec
1 Summary:        IMAP and POP3 server written with security primarily in mind
2 Name:           dovecot
3 Version:        0.99.10
4 Release:        0.1
5 License:        LGPL v2.1
6 Group:          Networking/Daemons
7 Source0:        http://dovecot.procontrol.fi/%{name}-%{version}.tar.gz
8 # Source0-md5:  26d8452366a28418cc8a114781a721b6
9 URL:            http://dovecot.procontrol.fi/
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 Dovecot is an IMAP and POP3 server for Linux/UNIX-like systems,
14 written with security primarily in mind. Although it's written with C,
15 it uses several coding techniques to avoid most of the common
16 pitfalls.
17
18 Dovecot can work with standard mbox and maildir formats and it's fully
19 compatible with UW-IMAP and Courier IMAP servers as well as mail
20 clients accessing the mailboxes directly. It's also planned to support
21 storing mails in SQL databases.
22
23 Dovecot is easy to set up and doesn't require special maintenance.
24 Only thing you need is to get the authentication working properly - if
25 your users are in /etc/passwd there's hardly anything you have to do.
26
27 Dovecot should be pretty fast, mostly because of index files that
28 Dovecot maintains; instead of having to scan through all the data in
29 mailbox, Dovecot can get most of the wanted information from index with
30 little effort.
31
32 Status:
33  - should be quite ready for use with normal IMAP clients
34  - complete IMAP4rev1 support
35  - supports THREAD and SORT extensions, required by many IMAP webmails
36  - complete TLS/SSL support, using either GNUTLS or OpenSSL
37  - IPv6 ready
38  - shared mailboxes aren't yet supported
39  - Maildir++ quota isn't yet supported. Hard filesystem quota can also
40    be problematic.
41  - mbox support isn't yet perfect - there's a few more or less
42    theoretical problems, but nothing too bad.
43
44 %prep
45 %setup -q
46
47 %build
48 %{__libtoolize}
49 %{__aclocal}
50 %{__autoconf}
51 %{__autoheader}
52 %{__automake}
53 %configure
54
55 %{__make}
56
57 %install
58 rm -rf $RPM_BUILD_ROOT
59
60 %{__make} install \
61         DESTDIR=$RPM_BUILD_ROOT
62
63 mv -f $RPM_BUILD_ROOT%{_sysconfdir}/{dovecot-example.conf,dovecot.conf}
64
65 %clean
66 rm -rf $RPM_BUILD_ROOT
67
68 %files
69 %defattr(644,root,root,755)
70 # COPYING contains some notes, not actual LGPL text
71 %doc AUTHORS COPYING ChangeLog NEWS README TODO doc/*.txt doc/*.c*f
72 %attr(755,root,root) %{_sbindir}/dovecot
73 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/dovecot.conf
74 %attr(755,root,root) %{_libdir}/dovecot
This page took 0.151635 seconds and 4 git commands to generate.