diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2010-12-31 04:05:20 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2010-12-31 05:55:53 +0100 |
commit | 7c2dc3d833206c9f869a4bf55db6c69c37953d7f (patch) | |
tree | 37fae1cc40be27a32d7560a11856351425b101d6 /lib | |
parent | c96788477bd4be72c31bb2dc7602378c569706e8 (diff) |
adduser also creates maildir
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Fripost/Schema/Result/Mailbox.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Fripost/Schema/Result/Mailbox.pm b/lib/Fripost/Schema/Result/Mailbox.pm index 577c350..0932d5c 100644 --- a/lib/Fripost/Schema/Result/Mailbox.pm +++ b/lib/Fripost/Schema/Result/Mailbox.pm @@ -26,10 +26,10 @@ __PACKAGE__->load_components(qw/InflateColumn::DateTime/); __PACKAGE__->table('mailbox'); __PACKAGE__->add_columns(qw/ username password name maildir domain active /); __PACKAGE__->add_columns( - create_date => { data_type => 'datetime', timezone => "Europe/Stockholm", locale => "se_SV" }, - change_date => { data_type => 'datetime', timezone => "Europe/Stockholm", locale => "se_SV" } + create_date => { data_type => 'datetime', timezone => "Europe/Stockholm", locale => 'sv_SE' }, + change_date => { data_type => 'datetime', timezone => "Europe/Stockholm", locale => 'sv_SE' } ); - + __PACKAGE__->set_primary_key('username'); =head1 NAME |