Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/guides/email/postfix_reporting.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
---
title: Postfix Process Reporting
author: Steven Spencer
contributors: Ezequiel Bruni
tested with: 8.5, 8.6, 9.0
tags:
- email
- reports
- tools
---

# Using Postfix For Server Process Reporting
Expand Down Expand Up @@ -32,6 +39,14 @@ Aside from postfix, we will need _mailx_ for testing our ability to send emails.

`dnf install postfix mailx`

!!! important "Rocky Linux 9.0 Changes"

This procedure works perfectly fine in Rocky Linux 9.0. The difference here is where the `mailx` command comes from. While you can install it by name in 8.x, `mailx` comes from the appstream package `s-nail` in 9.0. To install the needed packages, you need to use:

```
dnf install postfix s-nail
```

## Testing And Configuring Postfix

### Testing Mail First
Expand Down
7 changes: 5 additions & 2 deletions docs/guides/file_sharing/secure_ftp_server_vsftpd.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Secure FTP Server - vsftpd
author: Steven Spencer
contributors: Ezequiel Bruni
tested with: 8.5
tested with: 8.5, 8.6, 9.0
tags:
- security
- ftp
Expand Down Expand Up @@ -242,7 +242,10 @@ Remember that this was set up in the [Setting Up Virtual Users section above.](#

We need to create the file that contains the virtual user's configuration:

`vi /etc/vsftpd/vsftpd_user_conf/username`
```
mkdir /etc/vsftpd/vsftpd_user_conf
vi /etc/vsftpd/vsftpd_user_conf/username
```

This will have a single line in it that specifies the virtual user's local_root:

Expand Down