Skip to content

Commit b4c1f39

Browse files
committed
first version, based on sf-mta-forwarder extension
0 parents  commit b4c1f39

14 files changed

+81
-0
lines changed

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2008-2019 Tomasz Klim
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
sf-binary-ssmtp is a dependency extension, providing sSMTP binary
2+
for systems, that no longer provide it in their native repositories.

bin/ssmtp_debian/ssmtp.amd64

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../ssmtp_debian_2.64-8+b2/ssmtp.amd64

bin/ssmtp_debian/ssmtp.arm64

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../ssmtp_debian_2.64-8+b2/ssmtp.arm64

bin/ssmtp_debian/ssmtp.armel

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../ssmtp_debian_2.64-8+b2/ssmtp.armel

bin/ssmtp_debian/ssmtp.armhf

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../ssmtp_debian_2.64-8+b2/ssmtp.armhf

bin/ssmtp_debian/ssmtp.i386

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../ssmtp_debian_2.64-8+b2/ssmtp.i386

bin/ssmtp_debian_2.64-8+b2/copyright

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
This package is maintained by
2+
3+
Anibal Monsalve Salazar <anibal@debian.org>
4+
Santiago Ruano Rincón <santiago@debian.org>
5+
6+
This package was maintained by
7+
8+
Matt Ryan
9+
Hugo Haas
10+
Christophe Lameter
11+
David Collier-Brown
12+
13+
Upstream mantainers
14+
15+
Anibal Monsalve Salazar
16+
Santiago Ruano Rincón
17+
18+
Copyright notices
19+
20+
Copyright (C) 1998 Hugo Haas
21+
Copyright (c) 2001 Neal H Walfield <neal@cs.uml.edu>
22+
Copyright (C) 2004-2008 Anibal Monsalve Salazar <anibal@debian.org>
23+
24+
License
25+
26+
sSMTP is licensed under the GNU General Public License (GPL)
27+
version 2 or above.
28+
29+
This program is free software: you can redistribute it and/or modify
30+
it under the terms of the GNU General Public License as published by
31+
the Free Software Foundation, either version 2 of the License, or
32+
(at your option) any later version.
33+
34+
This program is distributed in the hope that it will be useful,
35+
but WITHOUT ANY WARRANTY; without even the implied warranty of
36+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37+
GNU General Public License for more details.
38+
39+
Please read the "COPYING" file in the archive root, or visit
40+
http://www.gnu.org/licenses/gpl.html, for information about the GPL.
41+
42+
You should have received a copy of the GNU General Public License with
43+
your Debian GNU/Linux system, in /usr/share/common-licenses/GPL-2, or with
44+
the ssmtp source package as the file COPYING. If not, write to the Free
45+
Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
46+
02110-1301, USA.
38.9 KB
Binary file not shown.
34.7 KB
Binary file not shown.
33.9 KB
Binary file not shown.
25.9 KB
Binary file not shown.

bin/ssmtp_debian_2.64-8+b2/ssmtp.i386

37.9 KB
Binary file not shown.

wrapper/get-ssmtp-binary-name.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
3+
if [ -f /etc/debian_version ]; then
4+
arch=`/opt/farm/ext/system/detect-architecture.sh`
5+
echo "/opt/farm/ext/mta-forwarder/support/ssmtp_debian/ssmtp.$arch"
6+
fi

0 commit comments

Comments
 (0)