diff options
author | Not Zed <NotZed@Ximian.com> | 2004-01-16 07:16:21 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-01-16 07:16:21 +0800 |
commit | 0ff3f18cf40dd18e7f54f20cf9b780852af650b3 (patch) | |
tree | e54ace61ebd97de8a3b2c1d658c6eecc5cf360ea /mail/default/C | |
parent | a95607ef487f4fffabbb807ce5fcd71ad4d56a8b (diff) | |
download | gsoc2013-evolution-0ff3f18cf40dd18e7f54f20cf9b780852af650b3.tar.gz gsoc2013-evolution-0ff3f18cf40dd18e7f54f20cf9b780852af650b3.tar.zst gsoc2013-evolution-0ff3f18cf40dd18e7f54f20cf9b780852af650b3.zip |
Startup files/folders.
2004-01-16 Not Zed <NotZed@Ximian.com>
* default/C/Inbox:
* default/C/Makefile.am:
* default/Makefile.am: Startup files/folders.
* em-migrate.c (emm_setup_initial): initial implementation of
startup setup.
(cp): Fix the test, we want exists AND size>0, not exists OR
size>0.
(cp): Fix the open, we can't use O_EXCL with empty, but present
files. Another hack fix for #52880.
** See bug #52896.
* em-format-html-display.c (efhd_html_button_press_event): do this
based on get_object_at rather than get_point_at, so we get the
offset properly.
svn path=/trunk/; revision=24261
Diffstat (limited to 'mail/default/C')
-rw-r--r-- | mail/default/C/Inbox | 6 | ||||
-rw-r--r-- | mail/default/C/Makefile.am | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/mail/default/C/Inbox b/mail/default/C/Inbox new file mode 100644 index 0000000000..bf0da4a911 --- /dev/null +++ b/mail/default/C/Inbox @@ -0,0 +1,6 @@ +From - +Subject: Welcome to Ximian Evolution + +Welcome to Ximian Evolution! + +This is a placeholder message. diff --git a/mail/default/C/Makefile.am b/mail/default/C/Makefile.am new file mode 100644 index 0000000000..fab3401384 --- /dev/null +++ b/mail/default/C/Makefile.am @@ -0,0 +1,7 @@ + +defaultlocaldir = $(privdatadir)/default/C/mail/local + +defaultlocal_DATA = \ + Inbox + +EXTRA_DIST = $(defaultlocal_DATA) |