##// END OF EJS Templates
When a specific TimeEntryActivity are change, associated TimeEntries will be...
When a specific TimeEntryActivity are change, associated TimeEntries will be re-assigned to the correct record. * Renamed build to create since the methods now create objects. * Removed call to Project#save that isn't needed since objects are saved directly now. * Wrapped the activity creation and updates in a SQL transaction so TimeEntries will remain in a consistent state if there is an error. * When a Project's TimeEntryActivities are destroyed, they are now reassigned to the parent TimeEntryActivity. #4077 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2950 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2496:04abeda1d739
r2836:37d401ac58c3
Show More
email.yml.example
21 lines | 442 B | text/plain | TextLexer
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 # Outgoing email settings
production:
delivery_method: :smtp
smtp_settings:
Jean-Philippe Lang
Use example.net as domain in default configuration (#1762)....
r1763 address: smtp.example.net
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 port: 25
Jean-Philippe Lang
Use example.net as domain in default configuration (#1762)....
r1763 domain: example.net
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 authentication: :login
Jean-Philippe Lang
Add doube quotes to user_name and password in email.yml.example (#2927)....
r2496 user_name: "redmine@example.net"
password: "redmine"
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611
development:
delivery_method: :smtp
smtp_settings:
address: 127.0.0.1
port: 25
Jean-Philippe Lang
Use example.net as domain in default configuration (#1762)....
r1763 domain: example.net
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 authentication: :login
Jean-Philippe Lang
Add doube quotes to user_name and password in email.yml.example (#2927)....
r2496 user_name: "redmine@example.net"
password: "redmine"