Page 9 of 38
Re: Linux PowerPC Server Software
Posted: Tue Jul 14, 2020 4:13 pm
by xeno74
Dovecot with Postfix:
Access to Dovecot and Postfix with SimpleMail:

Re: Linux PowerPC Server Software
Posted: Thu Jul 16, 2020 12:55 pm
by xeno74
Simple Authentication and Security Layer (SASL) for the SMTP authentication with Postfix:

Re: Linux PowerPC Server Software
Posted: Fri Jul 17, 2020 7:47 pm
by xeno74
Apache mod_authz_core:

Re: Linux PowerPC Server Software
Posted: Sun Jul 19, 2020 4:45 pm
by xeno74
Apache mod_authz_core part2:

Re: Linux PowerPC Server Software
Posted: Thu Jul 23, 2020 12:48 pm
by xeno74
Postfix with Dovecot including Sieve Pigeonhole via lda protocol:

Re: Linux PowerPC Server Software
Posted: Fri Jul 24, 2020 8:52 am
by xeno74
xeno74 wrote: Wed Mar 18, 2020 10:08 am
Fedora PPC64 with the SSH agent:
sshd_config
This keyword can be followed by a list of user name patterns, separated by spaces. If specified, login is allowed only for user names that match one of the patterns. Only user names are valid; a numerical user ID is not recognized. By default, login is allowed for all users. If the pattern takes the form USER@HOST then USER and HOST are separately checked, restricting logins to particular users from particular hosts.
Re: Linux PowerPC Server Software
Posted: Sat Jul 25, 2020 2:16 pm
by xeno74
xeno74 wrote: Thu Jul 23, 2020 12:48 pm
Postfix with Dovecot including Sieve Pigeonhole via lda protocol:
anyof = or
Code: Select all
if anyof (
header :contains "Subject" "SPAM",
header :contains "Subject" "VIRUS"
)
{
discard;
stop;
}
allof = and
Code: Select all
if allof (
header :contains "Subject" "Application",
header :contains "Subject" "IT"
)
{
redirect "[email protected]";
}
Re: Linux PowerPC Server Software
Posted: Sat Jul 25, 2020 8:20 pm
by xeno74
Postfix with Dovecot including Sieve Pigeonhole via lda protocol part2 (vacation extension):

Re: Linux PowerPC Server Software
Posted: Wed Jul 29, 2020 11:16 am
by xeno74
xeno74 wrote: Wed Mar 18, 2020 10:08 am
Fedora PPC64 with the SSH agent:
The ssh-agent is a program you may use together with OpenSSH or similar ssh programs. The ssh-agent provides a secure way of storing the passphrase of the private key. With an active ssh-agent, you don’t need a password for the private key if you connect to an other AmigaOne with the public key authentication.
Re: Linux PowerPC Server Software
Posted: Wed Jul 29, 2020 4:53 pm
by xeno74
xeno74 wrote: Wed Feb 12, 2020 4:04 pm
openSUSE Tumbleweed PPC64 with iptables and Pure-FTPd in the NAT mode:
Passive mode: The FTP client opens the connection to the FTP server via the server port 21. The server tells the client the server port (1024 - 5000).
'-N': NAT mode. Force ACTIVE mode: The FTP client opens the connection to the FTP server via the server port 21 (FTPS: 990) and tells the server the port for data transfers. After that the server sends the client the files from port 20 (FTPS: 989) to this port.