mayaml-getmail 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 54752bf8573677bf4afe1ff19c0be4b84e1721ad
4
- data.tar.gz: 10f2fec976fbaf9e26607e05205d4a985b517764
3
+ metadata.gz: 32317b8c3d77cecde46549a6234891258abd7841
4
+ data.tar.gz: cbc104438a68d47b9776a81442dc1278fdb6e30d
5
5
  SHA512:
6
- metadata.gz: 67e65889993b0f2d0131d6ebf881fb8f3da916dccc8f50c07960d5084515e876105b5b8c852c96c9c5df15dc364d461a08ba19b76e208fb795114db0161c5fe2
7
- data.tar.gz: dac153b2678724d7d34b0fb5d9d80e701a1d811225949f774aae8adc87611f5eba36514937ac6559d31560001ad9702ee69fbc01ada5db126680d34731bf75ee
6
+ metadata.gz: e6622add8d4ce19d176d24fdb9b3646d457749b7697841360de2fc9f2c79c8110cb638a1bc490b8a6720c0838d1bbd9da7c963ab9d048d6d5fd0c446c78455a9
7
+ data.tar.gz: 5cac997b46f95657287f0a1f69c2cacdd098d5b1c044a4f69f935f6a7de3ddeaad6b65504e1fe4efd303f634a235c06e10772ea06fa9a4aca859adf9162cc907
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.0.3 (2016.08.31)
2
+
3
+ * update docs
4
+
1
5
  === 1.0.2 (2016.08.31)
2
6
 
3
7
  * update to use mayaml v2
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # MAYaml for Getmail
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/mayaml-getmail.svg)](http://badge.fury.io/rb/mayaml-getmail)
4
+ [![Code Climate](https://codeclimate.com/github/skopciewski/mayaml-getmail/badges/gpa.svg)](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
 
@@ -18,5 +18,5 @@
18
18
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module MayamlGetmail
21
- VERSION = "1.0.2".freeze
21
+ VERSION = "1.0.3".freeze
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mayaml-getmail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Szymon Kopciewski