Changesets can be listed by changeset number.
The Git repository is here.
Changeset 27
Updated live RForum installation to use SVN sources rather than the
intermediate stuff it was on before. Accordingly, updated the site
configuration file.
- Comitted by: adh
- Date: Thursday July 27 22:26:50 2006 (over 18 years ago)
Affected files:
rool/rails/rforum/trunk/config/site.rb:
prev. | current | |
# All email generated by the forum will have this sender address | ||
:site_email => 'rforum@pond.org.uk', | ||
11 | | |
11 | ||
# Hostname of this forum (used for messageids) | ||
:hostname => 'pond.org.uk', | ||
... | ... | |
:skin => 'risc_os_open', | ||
# true: completely anonymous (no guest name) posting is | ||
19 | | |
19 | # allowed (not recommended) | |
:anon_posting_allowed => false, | ||
# true: only registered users can do anything other than read posts | ||
:guests_cannot_post => true, | ||
24 | | |
24 | ||
# See 'lang' directory for available languages | ||
:default_language => 'en', | ||
... | ... | |
:web_charset => 'utf-8', | ||
:db_charset => 'utf-8', | ||
:mail_charset => 'utf-8', | ||
35 | | |
36 | | |
37 | | |
38 | | |
39 | | |
40 | | |
41 | | |
43 | | |
44 | | |
45 | | |
46 | | |
47 | | |
48 | | |
36 | :search_results_per_page => 40, | |
37 | ||
38 | :topics_per_page => 40, | |
39 | ||
# Who should be allowed to see the email address of a user? | ||
# Possible values: | ||
# :noone (don't show email address) | ||
... | ... | |
:attachment_path => '/attachments', | ||
:max_attachment_size => 100.kilobytes, | ||
67 | | |
58 | ||
# Formatting of posts with quoting. | ||
# :simple is fixed with and with colored quoting levels | ||
# :new looks like messages in Mozilla Thunderbird | ||
:post_formatting => :simple, | ||
72 | | |
73 | | |
63 | ||
64 | # When user forgets a password, RForum generates a security token that is | |
# added to the URL and sent to the user by email. Such token allows the user to perform certain | ||
# security-sensitive activities without providing a password. This token will expire | ||
# after the number of hours specified by the parameter below. | ||
:security_token_life_hours => 24, | ||
69 | ||
70 | :spam_filter_regex => /(cialis|viagra|xenical|valium|xanax|phentermine|hydrocodone|casino|tramadol|ambien|impressive|congratulations|alprazolam|carisoprodol|rivotril|narod\.ru|href=|cymbalta|great design|adult|online store|gambling|world of warcraft|porn|\[url|<\/a>|e-cigarette|ezigaretten\.com|billige zigaretten)/i, | |
71 | ||
:use_sites => false | ||
} | ||
... | ... | |
ActionMailer::Base.delivery_method = :sendmail | ||
ActionMailer::Base.raise_delivery_errors = false | ||
end | ||
86 | | |
87 | | |
80 | ||
81 | # If you want tp configure RForum to work with SMTP server, | |
# write the following in the site.rb: | ||
# require 'default_site' | ||
# ActionMailer::Base.delivery_method = :smtp | ||
91 | | |
85 | # ActionMailer::Base.server_settings = { | |
# :address => 'nautilus.spidernet.net', # replace with your SMTP server | ||
# :port => 25, # replace with your SMTP server's port | ||
# :domain => 'nautilus.spidernet.net', # replace with your HELO domain | ||
# :user_name => nil, # set if your SMTP server requires authentication | ||
96 | | |
90 | # :password => nil, # set if your SMTP server requires authentication | |
# :authentication => nil # set to true if your SMTP server requires authentication | ||
# } | ||
end |