mayaml-getmail 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +24 -0
- data/lib/mayaml-getmail/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 32317b8c3d77cecde46549a6234891258abd7841
|
|
4
|
+
data.tar.gz: cbc104438a68d47b9776a81442dc1278fdb6e30d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6622add8d4ce19d176d24fdb9b3646d457749b7697841360de2fc9f2c79c8110cb638a1bc490b8a6720c0838d1bbd9da7c963ab9d048d6d5fd0c446c78455a9
|
|
7
|
+
data.tar.gz: 5cac997b46f95657287f0a1f69c2cacdd098d5b1c044a4f69f935f6a7de3ddeaad6b65504e1fe4efd303f634a235c06e10772ea06fa9a4aca859adf9162cc907
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# MAYaml for Getmail
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/mayaml-getmail)
|
|
4
|
+
[](https://codeclimate.com/github/skopciewski/mayaml-getmail)
|
|
4
5
|
|
|
5
6
|
This is the getmail configs generator which gets the accounts settigns from yaml file. See [Mayaml][mayaml_url]
|
|
6
7
|
|
|
@@ -23,6 +24,29 @@ Or install it yourself as:
|
|
|
23
24
|
If ruby bin dir is in your PATH, just call `mayaml-getmail <path_to_the_yaml_file> [<dir_for_storing_configs>]`
|
|
24
25
|
to list generated configs or store them in `<dir_for_storing_configs>`.
|
|
25
26
|
|
|
27
|
+
The result may looks like:
|
|
28
|
+
```
|
|
29
|
+
### Name: acc1 ==================================================
|
|
30
|
+
[retriever]
|
|
31
|
+
type = SimpleIMAPSSLRetriever
|
|
32
|
+
server = test.mailserver.net
|
|
33
|
+
port = 998
|
|
34
|
+
username = user@mailserver.net
|
|
35
|
+
password = sercet_password
|
|
36
|
+
mailboxes = ("INBOX")
|
|
37
|
+
|
|
38
|
+
[destination]
|
|
39
|
+
type = MDA_external
|
|
40
|
+
path = /usr/bin/procmail
|
|
41
|
+
unixfrom = True
|
|
42
|
+
|
|
43
|
+
[options]
|
|
44
|
+
verbose = 1
|
|
45
|
+
delivered_to = false
|
|
46
|
+
received = false
|
|
47
|
+
read_all = true
|
|
48
|
+
delete = true
|
|
49
|
+
```
|
|
26
50
|
|
|
27
51
|
## Versioning
|
|
28
52
|
|