sugoi-mail 0.0.0

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.
Files changed (182) hide show
  1. data/README +35 -0
  2. data/Rakefile +10 -0
  3. data/app/apis/mailservice_api.rb +178 -0
  4. data/app/controllers/.sugoi_admin_controller.rb.swp +0 -0
  5. data/app/controllers/account_controller.rb +39 -0
  6. data/app/controllers/address_controller.rb +49 -0
  7. data/app/controllers/application.rb +4 -0
  8. data/app/controllers/commandline_controller.rb +15 -0
  9. data/app/controllers/domain_controller.rb +37 -0
  10. data/app/controllers/mailinglist_controller.rb +51 -0
  11. data/app/controllers/mailservice_controller.rb +497 -0
  12. data/app/controllers/sugoi_admin_controller.rb +93 -0
  13. data/app/helpers/account_helper.rb +2 -0
  14. data/app/helpers/address_helper.rb +2 -0
  15. data/app/helpers/application_helper.rb +3 -0
  16. data/app/helpers/domain_helper.rb +2 -0
  17. data/app/helpers/mailservice_helper.rb +2 -0
  18. data/app/helpers/sugoi_admin_helper.rb +2 -0
  19. data/app/models/address.rb +110 -0
  20. data/app/models/admin_message.rb +45 -0
  21. data/app/models/confirmationcode.rb +59 -0
  22. data/app/models/domain.rb +76 -0
  23. data/app/models/mailinglist.rb +336 -0
  24. data/app/models/mailinglist_class.rb +39 -0
  25. data/app/models/message.rb +293 -0
  26. data/app/models/proxy_link.rb +25 -0
  27. data/app/models/user.rb +150 -0
  28. data/app/views/account/login.rhtml +22 -0
  29. data/app/views/account/logout.rhtml +10 -0
  30. data/app/views/account/signup.rhtml +17 -0
  31. data/app/views/account/welcome.rhtml +13 -0
  32. data/app/views/address/_form.rhtml +7 -0
  33. data/app/views/address/edit.rhtml +10 -0
  34. data/app/views/address/list.rhtml +27 -0
  35. data/app/views/address/new.rhtml +8 -0
  36. data/app/views/address/show.rhtml +8 -0
  37. data/app/views/domain/login.rhtml +22 -0
  38. data/app/views/domain/logout.rhtml +10 -0
  39. data/app/views/domain/signup.rhtml +17 -0
  40. data/app/views/domain/welcome.rhtml +13 -0
  41. data/app/views/layouts/address.rhtml +13 -0
  42. data/app/views/layouts/scaffold.rhtml +13 -0
  43. data/app/views/mailinglist/_form.rhtml +28 -0
  44. data/app/views/mailinglist/edit.rhtml +10 -0
  45. data/app/views/mailinglist/list.rhtml +27 -0
  46. data/app/views/mailinglist/new.rhtml +8 -0
  47. data/app/views/mailinglist/show.rhtml +16 -0
  48. data/app/views/sugoi_admin/create_domain.rhtml +1 -0
  49. data/app/views/sugoi_admin/list_addresses.rhtml +1 -0
  50. data/app/views/sugoi_admin/list_domains.rhtml +2 -0
  51. data/app/views/sugoi_admin/list_mailinglists.rhtml +1 -0
  52. data/bin/mailc +32 -0
  53. data/bin/maild +133 -0
  54. data/bin/sugoi-admin +21 -0
  55. data/bin/sugoi-mail +20 -0
  56. data/config/boot.rb +44 -0
  57. data/config/environment.rb +54 -0
  58. data/config/environments/bench.rb +21 -0
  59. data/config/environments/coverage.rb +21 -0
  60. data/config/environments/development.rb +21 -0
  61. data/config/environments/production.rb +18 -0
  62. data/config/environments/test.rb +19 -0
  63. data/config/lighttpd.conf +46 -0
  64. data/config/routes.rb +29 -0
  65. data/db/migrate/001_mailproxy.rb +7 -0
  66. data/db/migrate/002_create_users.rb +13 -0
  67. data/db/migrate/003_create_mailinglists.rb +13 -0
  68. data/db/migrate/004_create_addresses.rb +12 -0
  69. data/db/migrate/005_create_addresses_mailinglists.rb +13 -0
  70. data/db/migrate/006_alter_mailinglists.rb +9 -0
  71. data/db/migrate/007_create_messages.rb +25 -0
  72. data/db/migrate/008_add_mailinglistid_to_users.rb +14 -0
  73. data/db/migrate/009_add_domainadmin_to_users.rb +9 -0
  74. data/db/migrate/010_add_domain_to_users.rb +16 -0
  75. data/db/migrate/011_add_active_to_addresses.rb +14 -0
  76. data/db/migrate/012_create_confirmationcodes.rb +14 -0
  77. data/db/migrate/013_add_description_to_mailinglists.rb +9 -0
  78. data/db/migrate/014_create_admin_messages.rb +69 -0
  79. data/db/migrate/015_add_messages_to_mailinglists.rb +26 -0
  80. data/db/migrate/016_add_mailinglist_admin_to_users.rb +9 -0
  81. data/db/migrate/017_add_mailinglist_types.rb +94 -0
  82. data/db/migrate/018_add_bounciness_to_addresses.rb +20 -0
  83. data/db/migrate/019_add_archived_to_mailinglist_classes.rb +25 -0
  84. data/db/migrate/020_add_envelope_data_to_messages.rb +11 -0
  85. data/db/migrate/021_add_addresses_users.rb +14 -0
  86. data/db/migrate/022_add_virtual_to_users.rb +14 -0
  87. data/db/migrate/023_drop_openposting_from_mailinglists.rb +9 -0
  88. data/db/migrate/024_add_proxy_links.rb +21 -0
  89. data/db/migrate/025_add_proxify_to_mailinglist_classes.rb +25 -0
  90. data/db/schema.mysql.sql +104 -0
  91. data/db/schema.postgresql.sql +104 -0
  92. data/db/schema.rb +85 -0
  93. data/db/schema.sqlite.sql +104 -0
  94. data/db/schema.sqlserver.sql +113 -0
  95. data/db/schema_version +1 -0
  96. data/doc/README_FOR_APP +179 -0
  97. data/doc/mailinglist_classes description.txt +28 -0
  98. data/installer/rails_installer_defaults.yml +5 -0
  99. data/lib/daemonize.rb +56 -0
  100. data/lib/domain_system.rb +87 -0
  101. data/lib/gurgitate-rules.rb +69 -0
  102. data/lib/limitedfork.rb +66 -0
  103. data/lib/login_system.rb +87 -0
  104. data/public/.htaccess +40 -0
  105. data/public/404.html +8 -0
  106. data/public/500.html +8 -0
  107. data/public/dispatch.cgi +10 -0
  108. data/public/dispatch.fcgi +24 -0
  109. data/public/dispatch.rb +10 -0
  110. data/public/favicon.ico +0 -0
  111. data/public/images/rails.png +0 -0
  112. data/public/javascripts/application.js +2 -0
  113. data/public/javascripts/controls.js +815 -0
  114. data/public/javascripts/dragdrop.js +913 -0
  115. data/public/javascripts/effects.js +958 -0
  116. data/public/javascripts/prototype.js +2006 -0
  117. data/public/robots.txt +1 -0
  118. data/public/stylesheets/scaffold.css +74 -0
  119. data/public/stylesheets/trestle.css +74 -0
  120. data/script/about +3 -0
  121. data/script/breakpointer +3 -0
  122. data/script/console +3 -0
  123. data/script/destroy +3 -0
  124. data/script/fakedeliver +19 -0
  125. data/script/generate +3 -0
  126. data/script/performance/benchmarker +3 -0
  127. data/script/performance/profiler +3 -0
  128. data/script/plugin +3 -0
  129. data/script/process/reaper +3 -0
  130. data/script/process/spawner +3 -0
  131. data/script/runner +3 -0
  132. data/script/server +3 -0
  133. data/sugoi-mail.gemspec +36 -0
  134. data/test/fixtures/addresses.yml +70 -0
  135. data/test/fixtures/addresses_mailinglists.yml +20 -0
  136. data/test/fixtures/admin_messages.yml +65 -0
  137. data/test/fixtures/confirmationcodes.yml +13 -0
  138. data/test/fixtures/domains.yml +9 -0
  139. data/test/fixtures/mailinglist_classes.yml +45 -0
  140. data/test/fixtures/mailinglists.yml +80 -0
  141. data/test/fixtures/messages.yml +154 -0
  142. data/test/fixtures/proxy_links.yml +5 -0
  143. data/test/fixtures/users.yml +50 -0
  144. data/test/functional/domain_controller_test.rb +74 -0
  145. data/test/functional/mailservice_controller_test.rb +546 -0
  146. data/test/integration/test_soap.rb +413 -0
  147. data/test/integration/test_xmlrpc.rb +198 -0
  148. data/test/mocks/test/net-smtp-stub.rb +24 -0
  149. data/test/test_helper.rb +28 -0
  150. data/test/unit/address_test.rb +44 -0
  151. data/test/unit/admin_message_test.rb +41 -0
  152. data/test/unit/confirmationcode_test.rb +64 -0
  153. data/test/unit/domain_test.rb +128 -0
  154. data/test/unit/mailinglist_class_test.rb +82 -0
  155. data/test/unit/mailinglist_test.rb +145 -0
  156. data/test/unit/message_test.rb +151 -0
  157. data/test/unit/user_test.rb +126 -0
  158. data/test/units.rb +4 -0
  159. data/vendor/plugins/active_command/init.rb +1 -0
  160. data/vendor/plugins/active_command/lib/active_command/request.rb +137 -0
  161. data/vendor/plugins/active_command/lib/active_command/response.rb +132 -0
  162. data/vendor/plugins/active_command/lib/active_command.rb +2 -0
  163. data/vendor/plugins/ar_fixtures/CHANGELOG +10 -0
  164. data/vendor/plugins/ar_fixtures/MIT-LICENSE +20 -0
  165. data/vendor/plugins/ar_fixtures/README +19 -0
  166. data/vendor/plugins/ar_fixtures/Rakefile +54 -0
  167. data/vendor/plugins/ar_fixtures/about.yml +7 -0
  168. data/vendor/plugins/ar_fixtures/init.rb +1 -0
  169. data/vendor/plugins/ar_fixtures/lib/ar_fixtures.rb +102 -0
  170. data/vendor/plugins/ar_fixtures/tasks/ar_fixtures.rake +39 -0
  171. data/vendor/plugins/ar_fixtures/test/ar_fixtures_test.rb +53 -0
  172. data/vendor/plugins/ar_fixtures/test/database.yml +18 -0
  173. data/vendor/plugins/ar_fixtures/test/fixtures/beer.rb +5 -0
  174. data/vendor/plugins/ar_fixtures/test/fixtures/beers.yml +9 -0
  175. data/vendor/plugins/ar_fixtures/test/fixtures/beers_drunkards.yml +8 -0
  176. data/vendor/plugins/ar_fixtures/test/fixtures/drunkard.rb +6 -0
  177. data/vendor/plugins/ar_fixtures/test/fixtures/drunkards.yml +8 -0
  178. data/vendor/plugins/ar_fixtures/test/fixtures/glass.rb +2 -0
  179. data/vendor/plugins/ar_fixtures/test/fixtures/glasses.yml +9 -0
  180. data/vendor/plugins/ar_fixtures/test/schema.rb +21 -0
  181. data/vendor/plugins/ar_fixtures/test/test_helper.rb +37 -0
  182. metadata +320 -0
data/public/robots.txt ADDED
@@ -0,0 +1 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
@@ -0,0 +1,74 @@
1
+ body { background-color: #fff; color: #333; }
2
+
3
+ body, p, ol, ul, td {
4
+ font-family: verdana, arial, helvetica, sans-serif;
5
+ font-size: 13px;
6
+ line-height: 18px;
7
+ }
8
+
9
+ pre {
10
+ background-color: #eee;
11
+ padding: 10px;
12
+ font-size: 11px;
13
+ }
14
+
15
+ a { color: #000; }
16
+ a:visited { color: #666; }
17
+ a:hover { color: #fff; background-color:#000; }
18
+
19
+ .fieldWithErrors {
20
+ padding: 2px;
21
+ background-color: red;
22
+ display: table;
23
+ }
24
+
25
+ #errorExplanation {
26
+ width: 400px;
27
+ border: 2px solid red;
28
+ padding: 7px;
29
+ padding-bottom: 12px;
30
+ margin-bottom: 20px;
31
+ background-color: #f0f0f0;
32
+ }
33
+
34
+ #errorExplanation h2 {
35
+ text-align: left;
36
+ font-weight: bold;
37
+ padding: 5px 5px 5px 15px;
38
+ font-size: 12px;
39
+ margin: -7px;
40
+ background-color: #c00;
41
+ color: #fff;
42
+ }
43
+
44
+ #errorExplanation p {
45
+ color: #333;
46
+ margin-bottom: 0;
47
+ padding: 5px;
48
+ }
49
+
50
+ #errorExplanation ul li {
51
+ font-size: 12px;
52
+ list-style: square;
53
+ }
54
+
55
+ div.uploadStatus {
56
+ margin: 5px;
57
+ }
58
+
59
+ div.progressBar {
60
+ margin: 5px;
61
+ }
62
+
63
+ div.progressBar div.border {
64
+ background-color: #fff;
65
+ border: 1px solid grey;
66
+ width: 100%;
67
+ }
68
+
69
+ div.progressBar div.background {
70
+ background-color: #333;
71
+ height: 18px;
72
+ width: 0%;
73
+ }
74
+
@@ -0,0 +1,74 @@
1
+ body { background-color: #fff; color: #333; }
2
+
3
+ body, p, ol, ul, td {
4
+ font-family: verdana, arial, helvetica, sans-serif;
5
+ font-size: 13px;
6
+ line-height: 18px;
7
+ }
8
+
9
+ pre {
10
+ background-color: #eee;
11
+ padding: 10px;
12
+ font-size: 11px;
13
+ }
14
+
15
+ a { color: #000; }
16
+ a:visited { color: #666; }
17
+ a:hover { color: #fff; background-color:#000; }
18
+
19
+ .fieldWithErrors {
20
+ padding: 2px;
21
+ background-color: red;
22
+ display: table;
23
+ }
24
+
25
+ #ErrorExplanation {
26
+ width: 400px;
27
+ border: 2px solid red;
28
+ padding: 7px;
29
+ padding-bottom: 12px;
30
+ margin-bottom: 20px;
31
+ background-color: #f0f0f0;
32
+ }
33
+
34
+ #ErrorExplanation h2 {
35
+ text-align: left;
36
+ font-weight: bold;
37
+ padding: 5px 5px 5px 15px;
38
+ font-size: 12px;
39
+ margin: -7px;
40
+ background-color: #c00;
41
+ color: #fff;
42
+ }
43
+
44
+ #ErrorExplanation p {
45
+ color: #333;
46
+ margin-bottom: 0;
47
+ padding: 5px;
48
+ }
49
+
50
+ #ErrorExplanation ul li {
51
+ font-size: 12px;
52
+ list-style: square;
53
+ }
54
+
55
+ div.uploadStatus {
56
+ margin: 5px;
57
+ }
58
+
59
+ div.progressBar {
60
+ margin: 5px;
61
+ }
62
+
63
+ div.progressBar div.border {
64
+ background-color: #fff;
65
+ border: 1px solid grey;
66
+ width: 100%;
67
+ }
68
+
69
+ div.progressBar div.background {
70
+ background-color: #333;
71
+ height: 18px;
72
+ width: 0%;
73
+ }
74
+
data/script/about ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/about'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/breakpointer'
data/script/console ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/console'
data/script/destroy ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/destroy'
@@ -0,0 +1,19 @@
1
+ #!/bin/sh
2
+
3
+ # FAKEUSER=$1
4
+ DELIVERDIR=/tmp/fakedeliver
5
+ FILENAME=/tmp/fakedeliver.$$
6
+
7
+ # cat > $FILENAME
8
+
9
+ if ! [ -d $DELIVERDIR ]
10
+ then
11
+ mkdir $DELIVERDIR
12
+ fi
13
+
14
+ for FAKEUSER
15
+ do
16
+ lockfile-create ${DELIVERDIR}/${FAKEUSER}
17
+ cat >> ${DELIVERDIR}/${FAKEUSER}
18
+ lockfile-remove ${DELIVERDIR}/${FAKEUSER}
19
+ done
data/script/generate ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/generate'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/benchmarker'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/profiler'
data/script/plugin ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/plugin'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/reaper'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/spawner'
data/script/runner ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/runner'
data/script/server ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/server'
@@ -0,0 +1,36 @@
1
+ $:.unshift '../lib'
2
+
3
+ require 'rubygems'
4
+ require 'rake'
5
+
6
+ spec = Gem::Specification.new do |s|
7
+ s.name = "sugoi-mail"
8
+ s.version = "0.0.0"
9
+ s.summary = "Powerful mailing list manager."
10
+ s.has_rdoc = false
11
+ s.files = Dir.glob('**/*', File::FNM_DOTMATCH).reject do |f|
12
+ [ /\.$/, /config\/database.yml$/, /config\/database.yml-/,
13
+ /\.log$/, /^pkg/, /\.svn/, /^vendor\/rails/,
14
+ /^public\/(files|xml|articles|pages|index.html)/,
15
+ /^public\/(stylesheets|javascripts|images)\/theme/, /\~$/,
16
+ /\/\._/, /\/#/ ].any? {|regex| f =~ regex }
17
+ end
18
+
19
+ s.require_path = '.'
20
+ s.author = "Dave Brown"
21
+ s.email = "dagbrown@invio.co.jp"
22
+ s.homepage = "http://sugoi-mail.rubyforge.org/"
23
+ s.rubyforge_project = "sugoi-mail"
24
+ s.platform = Gem::Platform::RUBY
25
+ s.executables = ['sugoi-mail', 'mailc', 'maild']
26
+ s.add_dependency("rails", "= 1.1.6")
27
+ s.add_dependency("rails-app-installer", ">= 0.1.2")
28
+ s.add_dependency("gurgitate-mail", ">=1.8.0")
29
+ s.add_dependency("termios", ">=0.9.4")
30
+ s.add_dependency("highline", ">=1.2.3")
31
+ end
32
+
33
+ if $0==__FILE__
34
+ Gem::manage_gems
35
+ Gem::Builder.new(spec).build
36
+ end
@@ -0,0 +1,70 @@
1
+ ---
2
+ address_1:
3
+ bounces: 0
4
+ id: 1
5
+ address: address1@foo.test
6
+ delivery_attempts: 0
7
+ active: true
8
+
9
+ address_2:
10
+ bounces: 0
11
+ id: 2
12
+ address: address2@foo.test
13
+ delivery_attempts: 0
14
+ active: true
15
+
16
+ address_nonactive:
17
+ bounces: 0
18
+ id: 3
19
+ address: addressnonactive@foo.test
20
+ delivery_attempts: 0
21
+ active: false
22
+
23
+ address_message_1:
24
+ bounces: 0
25
+ id: 4
26
+ address: addressmessage1@foo.test
27
+ delivery_attempts: 0
28
+ active: true
29
+
30
+ address_message_2:
31
+ bounces: 0
32
+ id: 5
33
+ address: addressmessage2@foo.test
34
+ delivery_attempts: 0
35
+ active: true
36
+
37
+ address_message_3:
38
+ bounces: 0
39
+ id: 6
40
+ address: addressmessage3@foo.test
41
+ delivery_attempts: 0
42
+ active: true
43
+
44
+ address_user_1:
45
+ bounces: 0
46
+ id: 7
47
+ address: testuser@test.domain
48
+ delivery_attempts: 0
49
+ active: true
50
+
51
+ address_user_2:
52
+ bounces: 0
53
+ id: 8
54
+ address: root@test.domain
55
+ delivery_attempts: 0
56
+ active: true
57
+
58
+ address_user_3:
59
+ bounces: 0
60
+ id: 9
61
+ address: virtuser@test.domain
62
+ delivery_attempts: 0
63
+ active: true
64
+
65
+ address_external_1:
66
+ bounces: 0
67
+ id: 10
68
+ address: external@foo.test
69
+ delivery_attempts: 0
70
+ active: true
@@ -0,0 +1,20 @@
1
+ ---
2
+ testuser_address1_join:
3
+ mailinglist_id: 1
4
+ address_id: 1
5
+
6
+ testuser_address2_join:
7
+ mailinglist_id: 1
8
+ address_id: 2
9
+
10
+ virtuser_address_testuser_join:
11
+ mailinglist_id: 4
12
+ address_id: 7
13
+
14
+ virtuser_address_root_join:
15
+ mailinglist_id: 4
16
+ address_id: 8
17
+
18
+ nodesc_address_root_join:
19
+ mailinglist_id: 6
20
+ address_id: 9
@@ -0,0 +1,65 @@
1
+ ---
2
+ confirm:
3
+ message: |
4
+ From: {requestaddress}
5
+ To: {address}
6
+ Subject: Subscription confirmation: {name} mailing list.
7
+
8
+ Dear {address},
9
+
10
+ This is the mailing list software manager at {domain}.
11
+ I received a subscription request to add your email address to the
12
+ "{name}" mailing list:
13
+
14
+ {name}: {description}
15
+
16
+ To confirm that you did indeed request this, please send an
17
+ email message to {requestaddress} containing the string:
18
+
19
+ {command}
20
+
21
+ Simply replying to this message should be sufficient to accomplish that.
22
+
23
+ Mailing List Manager
24
+ EOT
25
+
26
+ id: 1
27
+ welcome:
28
+ message: |
29
+ From: {requestaddress}
30
+ To: {address}
31
+ Subject: Welcome to the {name} mailing list!
32
+
33
+ Dear {address},
34
+
35
+ Thank you for confirming your subscription to the {name}
36
+ mailing list!
37
+
38
+ Mailing List Manager
39
+
40
+ id: 2
41
+ goodbye:
42
+ message: |
43
+ From: {requestaddress}
44
+ To: {address}
45
+ Subject: Good bye, and thank you for being a member of the {name} mailing list!
46
+
47
+ Dear {address},
48
+
49
+ Thank you for being a member of the {name} mailing list. We're sorry
50
+ to see you go, but this message confirms that you have been unsubscribed
51
+ from the {name} mailing list.
52
+
53
+ Mailing List Manager
54
+
55
+ id: 3
56
+
57
+ test:
58
+ message: |
59
+ From: {requestaddress}
60
+ To: {address}
61
+ Subject: Test from {name}
62
+
63
+ {address}
64
+
65
+ id: 4
@@ -0,0 +1,13 @@
1
+ ---
2
+ confirmationcode_testuser_address1:
3
+ id: "1"
4
+ mailinglist_id: "1"
5
+ address_id: "1"
6
+ code: "7154578968941962"
7
+ confirmed: true
8
+ confirmationcode_testuser_address2:
9
+ id: "2"
10
+ mailinglist_id: "1"
11
+ address_id: "2"
12
+ code: "7122072639791783"
13
+ confirmed: false
@@ -0,0 +1,9 @@
1
+ ---
2
+ testdomain:
3
+ name: test.domain
4
+ id: 1
5
+ password: e7ce1e2e20ec9f11ce8e86c9c47ab9911c1d221e
6
+ confirmdomain:
7
+ name: confirm.domain
8
+ id: 2
9
+ password: e7ce1e2e20ec9f11ce8e86c9c47ab9911c1d221e
@@ -0,0 +1,45 @@
1
+ ---
2
+ mailinglist_class_ltma:
3
+ name: LTMA
4
+ moderated: false
5
+ public: true
6
+ confirmation: true
7
+ joinable: false
8
+ id: 1
9
+ closed: false
10
+ description: Lifetime Mail Address
11
+ archived: false
12
+ proxify: false
13
+ mailinglist_class_mailing_list:
14
+ name: Mailing List
15
+ moderated: false
16
+ public: false
17
+ confirmation: true
18
+ joinable: true
19
+ id: 2
20
+ closed: false
21
+ description: A normal, unmoderated, private-posting mailing list
22
+ archived: false
23
+ proxify: false
24
+ mailinglist_class_distribution_list:
25
+ name: Distribution List
26
+ moderated: false
27
+ public: false
28
+ confirmation: false
29
+ joinable: false
30
+ id: 3
31
+ closed: true
32
+ description: A private distribution list
33
+ archived: false
34
+ proxify: false
35
+ mailinglist_class_proxified_ltma:
36
+ name: Proxifiable LTMA
37
+ moderated: false
38
+ public: true
39
+ confirmation: true
40
+ joinable: false
41
+ id: 4
42
+ closed: false
43
+ description: Lifetime Mail Address, with proxying
44
+ archived: false
45
+ proxify: true
@@ -0,0 +1,80 @@
1
+ ---
2
+ testuser:
3
+ name: testuser
4
+ mailinglist_class_id: 1
5
+ welcome_admin_message_id: 1
6
+ id: 1
7
+ description: Test User
8
+ confirmed_admin_message_id: 2
9
+ user_id: 1
10
+ sayonara_admin_message_id: 3
11
+
12
+ root:
13
+ name: root
14
+ mailinglist_class_id: 1
15
+ welcome_admin_message_id: 1
16
+ id: 2
17
+ description: Admin
18
+ confirmed_admin_message_id: 2
19
+ user_id: 2
20
+ sayonara_admin_message_id: 3
21
+
22
+ testml:
23
+ name: testml
24
+ mailinglist_class_id: 2
25
+ welcome_admin_message_id: 1
26
+ id: 3
27
+ description: Test Mailing List
28
+ confirmed_admin_message_id: 2
29
+ user_id: 1
30
+ sayonara_admin_message_id: 3
31
+
32
+ virtuser:
33
+ name: virtuser
34
+ mailinglist_class_id: 2
35
+ welcome_admin_message_id: 1
36
+ id: 4
37
+ description: Virtual User
38
+ confirmed_admin_message_id: 2
39
+ user_id: 3
40
+ sayonara_admin_message_id: 3
41
+
42
+ virtml:
43
+ name: virtml
44
+ id: 5
45
+ user_id: 3
46
+ description: Virtual Mailing List
47
+ mailinglist_class_id: 3
48
+ welcome_admin_message_id: 1
49
+ confirmed_admin_message_id: 2
50
+ sayonara_admin_message_id: 3
51
+
52
+ nodesc:
53
+ name: nodesc
54
+ id: 6
55
+ user_id: 6
56
+ description:
57
+ mailinglist_class_id: 2
58
+ welcome_admin_message_id: 1
59
+ confirmed_admin_message_id: 2
60
+ sayonara_admin_message_id: 3
61
+
62
+ nodesc_virtml:
63
+ name: nodescml
64
+ id: 8
65
+ user_id: 6
66
+ description:
67
+ mailinglist_class_id: 3
68
+ welcome_admin_message_id: 1
69
+ confirmed_admin_message_id: 2
70
+ sayonara_admin_message_id: 3
71
+
72
+ proxuser:
73
+ name: proxuser
74
+ id: 7
75
+ user_id: 4
76
+ description: Proxy Mailing List
77
+ mailinglist_class_id: 4
78
+ welcome_admin_message_id: 1
79
+ confirmed_admin_message_id: 2
80
+ sayonara_admin_message_id: 3