Compare commits
25 Commits
6.4.17-1ma
...
main
Author | SHA1 | Date | |
---|---|---|---|
27c4399b6d | |||
38ad8eb641 | |||
4913fe28b9 | |||
b416f06bc7 | |||
5d4272bc17 | |||
49f8092bf3 | |||
13606bc995 | |||
78a29da417 | |||
380903cf51 | |||
8cd7bea736 | |||
5edb193aed | |||
5cffeac9a8 | |||
f5f86cc514 | |||
5412c098e1 | |||
3f5f0d8e00 | |||
a1252a08b4 | |||
4e28fe44ed | |||
8b741c73ad | |||
3869fdcf5f | |||
fecf7bf1f1 | |||
2d9fc1a693 | |||
bfd7658258 | |||
00cfad5ef4 | |||
9fb10ab1b2 | |||
099067a8df |
@@ -3,3 +3,4 @@
|
||||
Fetchmail is a mail-retrieval and forwarding utility; it fetches mail from remote mailservers and forwards it to your local (client) machine’s delivery system. You can then handle the retrieved mail using normal mail user agents such as mutt(1), elm(1) or Mail(1). The fetchmail utility can be run in a daemon mode to repeatedly poll one or more systems at a specified interval.
|
||||
The fetchmail program can gather mail from servers supporting any of the common mail-retrieval protocols: POP2 (legacy, to be removed from future release), POP3, IMAP2bis, IMAP4, and IMAP4rev1. It can also use the ESMTP ETRN extension and ODMR. (The RFCs describing all these protocols are listed at the end of this manual page.)
|
||||
|
||||
|
||||
|
106
fetchmail.spec
106
fetchmail.spec
@@ -5,14 +5,14 @@
|
||||
%define majver %(echo %version | cut -d. -f1-2)
|
||||
|
||||
Name: fetchmail
|
||||
Version: 6.4.17
|
||||
Version: 6.5.4
|
||||
Release: 1mamba
|
||||
Summary: A mail-retrieval and forwarding utility
|
||||
Group: Applications/Networking
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://fetchmail.berlios.de/
|
||||
URL: https://www.fetchmail.info/
|
||||
Source: https://sourceforge.net/projects/fetchmail/files/branch_%{majver}/fetchmail-%{version}.tar.xz
|
||||
Source1: fetchmail.service
|
||||
Source2: %{name}-fetchmailrc
|
||||
@@ -20,24 +20,27 @@ Source3: fetchmail-tmpfiles.conf
|
||||
License: GPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: ldconfig
|
||||
BuildRequires: libopenssl-devel
|
||||
BuildRequires: libpython-devel
|
||||
BuildRequires: libpython311-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: maildrop >= 1.6.3
|
||||
Requires: python-tk >= 2.4.3
|
||||
Requires: maildrop >= 1.6.3
|
||||
Provides: user(vmail)
|
||||
Provides: group(vmail)
|
||||
|
||||
%description
|
||||
Fetchmail is a mail-retrieval and forwarding utility; it fetches mail from remote mailservers and forwards it to your local (client) machine’s delivery system. You can then handle the retrieved mail using normal mail user agents such as mutt(1), elm(1) or Mail(1). The fetchmail utility can be run in a daemon mode to repeatedly poll one or more systems at a specified interval.
|
||||
The fetchmail program can gather mail from servers supporting any of the common mail-retrieval protocols: POP2 (legacy, to be removed from future release), POP3, IMAP2bis, IMAP4, and IMAP4rev1. It can also use the ESMTP ETRN extension and ODMR. (The RFCs describing all these protocols are listed at the end of this manual page.)
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure \
|
||||
--with-ssl
|
||||
--with-ssl \
|
||||
PYTHON=%{__python3}
|
||||
|
||||
%make
|
||||
#sed -i "s|/lib/python.*/site-packages|/lib/site-python|" fetchmailconf
|
||||
@@ -45,13 +48,14 @@ The fetchmail program can gather mail from servers supporting any of the common
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall \
|
||||
pythondir=%{python_sitearch} \
|
||||
pyexecdir=%{python_sitelib}
|
||||
pythondir=%{python3_sitearch} \
|
||||
pyexecdir=%{python3_sitelib}
|
||||
|
||||
install -D -m0644 %{SOURCE1} %{buildroot}%{_unitdir}/fetchmail.service
|
||||
install -D -m0640 %{SOURCE2} %{buildroot}%{_sysconfdir}/fetchmailrc
|
||||
install -D -m0640 %{SOURCE3} %{buildroot}%{_tmpfilesdir}/fetchmail.conf
|
||||
install -d %{buildroot}/var/log/fetchmail/
|
||||
install -d %{buildroot}/var/lock/fetchmail/
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
@@ -90,7 +94,9 @@ find /etc/rc[0-6].d/ -type l -xtype l -exec rm -f {} \;
|
||||
%{_tmpfilesdir}/fetchmail.conf
|
||||
%{_bindir}/fetchmail
|
||||
%{_bindir}/fetchmailconf
|
||||
%{python_sitearch}/fetchmailconf.py*
|
||||
%{python3_sitearch}/fetchmailconf.py*
|
||||
%{python3_sitearch}/__pycache__/fetchmailconf.cpython*.py*
|
||||
%attr(0750,vmail,vmail) %dir /var/lock/fetchmail
|
||||
%attr(0750,vmail,vmail) %dir /var/log/fetchmail
|
||||
%{_mandir}/man1/fetchmail.1*
|
||||
%{_mandir}/man1/fetchmailconf.1*
|
||||
@@ -98,6 +104,90 @@ find /etc/rc[0-6].d/ -type l -xtype l -exec rm -f {} \;
|
||||
#NEWS README README.NTLM README.SSL TODO
|
||||
|
||||
%changelog
|
||||
* Wed Jun 18 2025 Automatic Build System <autodist@openmamba.org> 6.5.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 11 2025 Automatic Build System <autodist@openmamba.org> 6.5.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Dec 30 2024 Automatic Build System <autodist@openmamba.org> 6.5.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Nov 13 2024 Automatic Build System <autodist@openmamba.org> 6.5.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Oct 30 2024 Automatic Build System <autodist@openmamba.org> 6.5.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jul 26 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 6.4.39-2mamba
|
||||
- provide user and group vmail
|
||||
|
||||
* Sat Jul 20 2024 Automatic Build System <autodist@openmamba.org> 6.4.39-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Feb 01 2024 Automatic Build System <autodist@openmamba.org> 6.4.38-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Feb 27 2023 Automatic Build System <autodist@mambasoft.it> 6.4.37-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jan 28 2023 Automatic Build System <autodist@mambasoft.it> 6.4.36-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jan 04 2023 Automatic Build System <autodist@mambasoft.it> 6.4.35-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 16 2022 Automatic Build System <autodist@mambasoft.it> 6.4.34-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Aug 27 2022 Automatic Build System <autodist@mambasoft.it> 6.4.33-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jul 30 2022 Automatic Build System <autodist@mambasoft.it> 6.4.32-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 17 2022 Automatic Build System <autodist@mambasoft.it> 6.4.31-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Apr 27 2022 Automatic Build System <autodist@mambasoft.it> 6.4.30-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Mar 20 2022 Automatic Build System <autodist@mambasoft.it> 6.4.29-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Mar 06 2022 Automatic Build System <autodist@mambasoft.it> 6.4.28-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jan 27 2022 Automatic Build System <autodist@mambasoft.it> 6.4.27-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Dec 27 2021 Automatic Build System <autodist@mambasoft.it> 6.4.26-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Dec 11 2021 Automatic Build System <autodist@mambasoft.it> 6.4.25-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Nov 21 2021 Automatic Build System <autodist@mambasoft.it> 6.4.24-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 31 2021 Automatic Build System <autodist@mambasoft.it> 6.4.23-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 14 2021 Automatic Build System <autodist@mambasoft.it> 6.4.22-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Aug 15 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 6.4.21-1mamba
|
||||
- update to 6.4.21
|
||||
|
||||
* Wed Apr 28 2021 Automatic Build System <autodist@mambasoft.it> 6.4.19-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Mar 29 2021 Automatic Build System <autodist@mambasoft.it> 6.4.18-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Mar 28 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 6.4.17-2mamba
|
||||
- provide required dir /var/lock/fetchmail
|
||||
|
||||
* Mon Mar 08 2021 Automatic Build System <autodist@mambasoft.it> 6.4.17-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Reference in New Issue
Block a user