purelymail 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e4bdda524618b9f54fa2db24e50c78720d0e37ed092dd2a90943095a65ef1e1
4
- data.tar.gz: e4167c8d6e8ff29be55e479bb45acdaf159e97edd30a8ce901a2f643b2902b48
3
+ metadata.gz: 7a7c115b73afdd09ec98acf124ece635d5bba266801a96dbcab1cc8750be63ad
4
+ data.tar.gz: f9e0bbcf336710484ab1017994e54a804bcaf59831af9d6efeb622a2d11a1e44
5
5
  SHA512:
6
- metadata.gz: f3ea3625f9066135040dfc9981b84a9f7f465ea75b4bd634a63be1c8b6da07eeaeae037c9477d80b2bb87cc582f39ad0e8c694d052031dac9fa9de051458b8d2
7
- data.tar.gz: 56076ffc74848db74ac31a3c8f8b0c1c54f0960e6db801260ccf3c3747ad2026f7b3901e9ac8fd0cb189aae5144e85b61f1cb7dd0c7594f6dcc4a8b44ae19716
6
+ metadata.gz: 974500a1b48705da1d7b4b4a8e3861e4124e4e8a0991554c5e5bc161efa39df448946d5eb1953d80540b80144faeb966ddc3e629bac26e2ed7be2ad4be74070b
7
+ data.tar.gz: b34836d881edbbe950e75a3a0e824dc59bfc968bc70076b8d755401e83eb58466666cf0f550626a48afcd584b47b72d145dfe8f45c677a3ad0480b0e927c0de3
@@ -15,12 +15,12 @@ module Purelymail
15
15
  post("addDomain", { domainName: name })
16
16
  end
17
17
 
18
- def create_user(name:, domain:, password:)
19
- post("createUser", { userName: name, domainName: domain, password: password })
18
+ def create_user(username:, password:)
19
+ post("createUser", { userName: username, password: password })
20
20
  end
21
21
 
22
- def change_password(name:, domain:, password:)
23
- post("changePassword", { userName: name, domainName: domain, password: password })
22
+ def change_password(username:, new_password:)
23
+ post("modifyUser", { userName: username, newPassword: new_password })
24
24
  end
25
25
 
26
26
  def create_routing_rule(domain_name:, match_user:, target_addresses:, prefix: false, catchall: false)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Purelymail
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: purelymail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben D'Angelo
@@ -51,13 +51,13 @@ files:
51
51
  - lib/purelymail/configuration.rb
52
52
  - lib/purelymail/error.rb
53
53
  - lib/purelymail/version.rb
54
- homepage: https://github.com/bendangelo/purelymail-rb
54
+ homepage: https://github.com/Wenmar-Pro/purelymail-rb
55
55
  licenses:
56
56
  - MIT
57
57
  metadata:
58
- homepage_uri: https://github.com/bendangelo/purelymail-rb
59
- source_code_uri: https://github.com/bendangelo/purelymail-rb
60
- changelog_uri: https://github.com/bendangelo/purelymail-rb/blob/main/CHANGELOG.md
58
+ homepage_uri: https://github.com/Wenmar-Pro/purelymail-rb
59
+ source_code_uri: https://github.com/Wenmar-Pro/purelymail-rb
60
+ changelog_uri: https://github.com/Wenmar-Pro/purelymail-rb/blob/main/CHANGELOG.md
61
61
  rdoc_options: []
62
62
  require_paths:
63
63
  - lib