Skip to content

Commit

Permalink
Clarify parameter names
Browse files Browse the repository at this point in the history
  • Loading branch information
pepa65 committed Dec 3, 2023
1 parent 75c15bd commit 78f3e75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![GitHub](https://img.shields.io/github/license/pepa65/m2m.svg)](LICENSE)
# m2m - Move from POP3 to Maildir

* **v1.12.1**
* **v1.12.2**
* License: GPLv3+
* Just pull mails from POP3 servers (TLS can be disabled) and put them in local Maildirs.
* Proxies and Onion entry servers are supported.
Expand Down Expand Up @@ -41,7 +41,7 @@

## Help
```
m2m v1.12.1 - Move from POP3 to Maildir
m2m v1.12.2 - Move from POP3 to Maildir
* Downloading emails from POP3 servers and moving them into Maildir folders.
* Repo: github.com/pepa65/m2m
* Usage: m2m [ -h|--help | -q|--quiet ]
Expand All @@ -52,7 +52,7 @@ m2m v1.12.1 - Move from POP3 to Maildir
* The directory '~/.m2m.conf' contains all the account config files, which
are checked concurrently. The filename is taken as the account name.
Lockfiles '.ACCOUNT_locked' get placed here when an account gets checked.
* Parameters in the configuration files:
* Parameter names (lowercase!) in the configuration files:
active: true/false Account is active [default] or not
username: POP3 username [mandatory]
password: POP3 password [mandatory]
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"gopkg.in/yaml.v2"
)

const version = "1.12.1"
const version = "1.12.2"

type Config struct {
Username string
Expand Down Expand Up @@ -56,7 +56,7 @@ func usage(msg string) { // I:self,version
* The directory '~/.m2m.conf' contains all the account config files, which
are checked concurrently. The filename is taken as the account name.
Lockfiles '.ACCOUNT_locked' get placed here when an account gets checked.
* Parameters in the configuration files:
* Parameter names (lowercase!) in the configuration files:
active: true/false Account is active [default] or not
username: POP3 username [mandatory]
password: POP3 password [mandatory]
Expand Down

0 comments on commit 78f3e75

Please sign in to comment.