diff options
Diffstat (limited to 'sqwebmail/html')
59 files changed, 5303 insertions, 0 deletions
| diff --git a/sqwebmail/html/.gitignore b/sqwebmail/html/.gitignore new file mode 100644 index 0000000..f4b9ba9 --- /dev/null +++ b/sqwebmail/html/.gitignore @@ -0,0 +1,5 @@ +/README_LANG.html +/README_LANG.txt +/en +/install-sh +/missing diff --git a/sqwebmail/html/Makefile.am b/sqwebmail/html/Makefile.am new file mode 100644 index 0000000..ba38a4d --- /dev/null +++ b/sqwebmail/html/Makefile.am @@ -0,0 +1,45 @@ +# +# Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for +# distribution information. + +@SET_MAKE@ + +SUBDIRS=@LANGUAGES@ + +htmllibdir=@htmldir@ + +DISTCLEANFILES=README_LANG.txt + +EXTRA_DIST=mksoftlinks rmsoftlinks lstsoftlinks README_LANG.txt + +install-data-hook: +	@for lang in `cat ${srcdir}/*/LANGUAGE_PREF | sort | awk ' { print $$2 } ' | sort | uniq` ; do ${srcdir}/mksoftlinks $(DESTDIR)$(htmllibdir) $$lang ; done + +uninstall-local: +	@for lang in `cat ${srcdir}/*/LANGUAGE_PREF | sort | awk ' { print $$2 } ' | sort | uniq` ; do ${srcdir}/rmsoftlinks $(DESTDIR)$(htmllibdir) $$lang ; done + +install-perms: +	@$(MAKE) -$(MAKEFLAGS) install-perms-recursive +	@$(MAKE) -$(MAKEFLAGS) install-perms-local + +install-perms-recursive: +	@>permissions.dat +	@SUBDIRS="$(SUBDIRS)" ; for f in $$SUBDIRS ; do ( cd $$f && $(MAKE) $(AM_MAKEFLAGS) install-perms ) ; cat /dev/null >>$$f/permissions.dat ; cat $$f/permissions.dat >>permissions.dat ; done + +install-perms-local: +	@${srcdir}/lstsoftlinks `cat ${srcdir}/*/LANGUAGE_PREF | sort | awk ' { print $$2 } ' | sort | uniq` | sort | uniq | while read F ; \ +	do echo "$(htmllibdir)/$$F 644 bin bin" ; done >>permissions.dat +	@echo "$(htmllibdir) 555 bin bin"  >>permissions.dat + +clone: +	@test -d ${srcdir}/${to} || exit 0; echo ${srcdir}/${to} already exists. ; exit 1 +	cd ${from} && $(MAKE) clonedist +	mkdir ${srcdir}/${to} +	d=`pwd`; cd ${srcdir}/${to} && tar xzf $$d/${from}/clone.tar.gz +	echo ${to} >${srcdir}/${to}/LANGUAGE +	cd ${srcdir}/${to} ; pref=`awk ' { print $$1 }' <LANGUAGE_PREF` ; echo $$pref ${to} >LANGUAGE_PREF + +HTML2TXT=`which lynx 2>/dev/null && echo "lynx -dump -nolist" && exit; echo "links -dump"` + +README_LANG.txt: README_LANG.html +	$(HTML2TXT) README_LANG.html >README_LANG.txt diff --git a/sqwebmail/html/README_LANG.html.in b/sqwebmail/html/README_LANG.html.in new file mode 100644 index 0000000..1458111 --- /dev/null +++ b/sqwebmail/html/README_LANG.html.in @@ -0,0 +1,188 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" +                      "http://www.w3.org/TR/REC-html40/loose.dtd"> +<html> +<head> +  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> +  <meta name="Author" content="Sam Varshavchik" /> +  <title>SqWebMail</title> +  <!-- Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for --> +  <!-- distribution information. --> +</head> + +<body text="#000000" bgcolor="#FFFFFF" link="#0000EE" vlink="#551A8B" +alink="#FF0000" lang="en"> +<h1>SqWebMail Language translations</h1> + +<p>Starting with version 0.23, SqWebMail includes configuration scripts in the +html subdirectory (the one where you found this file) which make it possible +to be able to add translated HTML templates to SqWebMail very easily. You will +be able to create and maintain the translated HTML templates all by +yourself.</p> + +<p>Before you set up a translated HTML template set, you will need to have the +following information:</p> +<ul> +  <li>ISO code/locality for your translation. For example, I distribute +    SqWebMail with the HTML templates for en-us - English-US. If, for example, +    you wanted to create an HTML template set for English-British, your ISO +    code/locality would be en-gb. If you wanted to create an HTML template set +    for French, your ISO code/locality would be fr-fr, and so on.<br> +    <br> +  </li> +  <li>Locale code. This is the name of the i18n locale that's installed on +    your system. The locale primarily determines how dates are displayed. It +    is usually very similar to the ISO code/locality. For example, the i18n +    locale for English-US is en_US, for English-British it's en_GB, for French +    it's fr_FR. Try checking for the LOCALE environment variable, the manual +    page for locale(7), or the contents of <tt>/usr/share/locale</tt> +    directory.<br> + +    <p></p> +  </li> +  <li>The MIME character set. This specifies the character set of messages in +    this language. For most european languages, it is iso-8859-1.<br> +    <br> +  </li> +  <li>The name of the ispell dictionary for your language. For example, for +    English-US, the corresponding ispell dictionary is called "american", for +    German, it's "german".</li> +</ul> + +<h2>Extract sqwebmail, and run configure</h2> + +<p>First, you want to take the standard <tt>sqwebmail-@VERSION@.tar.gz</tt> +tarball, and extract it, then run the <tt>configure</tt> script with your +usual options:</p> + +<p><tt>$ tar xzvf sqwebmail-@VERSION@.tar.gz</tt><br> +<tt>$ cd sqwebmail-@VERSION@</tt><br> +<tt>$ ./configure [ your usual options go here ]</tt></p> + +<p>Change to the html subdirectory.</p> + +<p><tt>$ cd html</tt></p> + +<p>The standard <tt>sqwebmail-@VERSION.tar.gz</tt> includes the subdirectory +html/en-us. Let's say you want to translate it into French.</p> + +<p>The ISO code/locality is fr-fr.</p> + +<p>The locale code is fr_FR.</p> + +<p>The ispell dictionary name is "french".</p> + +<p>The first thing that needs to be done is to create another subdirectory in +html. The name of the subdirectory must be the ISO code/locality for the +language.</p> + +<p>You don't have to do it by hand. There's a special target in html/Makefile +that will do it for you!</p> + +<p><tt>$ make clone from=en-us to=fr-fr</tt></p> + +<p>This script takes the Makefile, the configure script, and other files from +the <tt>html/en-us</tt> subdirectory, and creates the <tt>html/fr-fr</tt> +subdirectory which will temporary contain the mirror image of the +<tt>html/en-us</tt> subdirectory.</p> + +<h2>Setting LANGUAGE_PREF</h2> + +<p>You now have to make minor changes to some files in the fr-fr subdirectory. +<tt>fr-fr/LANGUAGE</tt> will be automatically created by the make clone +script. However, you must initialize the contents of the +<tt>fr-fr/LANGUAGE_PREF</tt> file:</p> + +<p><tt>$ echo fr50 fr-fr >fr-fr/LANGUAGE_PREF</tt></p> + +<p>The LANGUAGE_PREF file must contain exactly one line with two words. The +second word must always be the ISO code/locality. The first word is used to +sort all the installed HTML templates alphabetically by ISO code/locality, and +it's used to selecte the preferred locality within the same ISO code.</p> + +<p>For example, the contents of <tt>en-us/LANGUAGE_PREF</tt> is "en50 en-us". +Let's say you want to have both en-us and en-gb HTML templates. If you want +clients requesting the "en" HTML to receive the en-gb HTML, you will have to +set <tt>en-gb/LANGUAGE_PREF</tt> to something like "en40 en-gb":</p> + +<p><tt>$ echo en40 en-gb >en-gb/LANGUAGE_PREF</tt></p> + +<p>If you want clients requesting the "en" HTML to receive the en-us HTML, you +will have to do something like this:</p> + +<p><tt>$ echo en60 en-gb >en-gb/LANGUAGE_PREF</tt></p> + +<p>The first word in all the LANGUAGE_PREF files is used to sort the list of +all the available HTML templates, and the sorted list is used to select the +preferred locality within the same ISO code.</p> + +<h2>Setting LOCALE</h2> + +<p>Let's resume the example with the French translation. The next file that +needs to be changed is LOCALE. This file contains the locale code for the +language. For French, the locale code is fr_FR:</p> + +<p><tt>$ echo fr_FR >fr-fr/LOCALE</tt></p> + +<h2>Setting CHARSET</h2> + +<p>The CHARSET file sets the MIME character set of outgoing messages. For US +and most european languages, this value should be <tt>iso-8859-1</tt></p> + +<p><tt>$ echo iso-8859-1 >fr-fr/CHARSET</tt></p> + +<h2>Setting ISPELLDICT</h2> + +<p>Finally, you need to specify which dictionary ispell will use for spell +checking. For French, the dictionary is simply named "french":</p> + +<p><tt>$ echo french >fr-fr/ISPELLDICT</tt></p> + +<p>If you do not have an ispell dictionary for this language, initialize +ISPELLDICT with the name of the default dictionary.</p> + +<h2>Rerunning the configure script</h2> + +<p>You now need to rerun the configure script in the main sqwebmail +directory:</p> + +<p><tt>$ cd ..<br> +$ ./configure [ options ]</tt></p> + +<p>This reruns the configure script in the sqwebmail-@VERSION@ directory, +which will now pick up your new html/fr-fr subdirectory, which will be +configured in.</p> + +<h2>Creating the actual translations</h2> + +<p>Now, you can edit all the .html files in html/fr-fr, and replace all +English text with its French equivalent.</p> + +<p>If you now do a make, followed by make install, the installation script +will install both the original en-us HTML templates and fr-fr HTML templates +together.</p> + +<p>If you now run make dist:</p> + +<p><tt>$ make dist</tt></p> + +<p>This will create a new <tt>sqwebmail-@VERSION@.tar.gz</tt> tarball, +containing both sets of HTML templates, which you can now distribute!</p> + +<h2>Updating translations for new versions of SqWebMail</h2> + +<p>Well, what should you do when a new version of SqWebMail is available?</p> + +<p>First, you need to determine whether or not there were any changes to the +contents of the <tt>html/en-us</tt> subdirectory. Then, you will have to apply +the same changes to the translated contents of the old <tt>html/fr-fr</tt> +subdirectory.</p> + +<p>Then, repeat the previous procedure for the new version of SqWebMail, but +before running the <tt>configure</tt> script for the second time, copy all the +<tt>.html</tt> files from the previous version of SqWebMail (plus any changes +or new files) into the <tt>html/fr-fr</tt> subdirectory of the new +version.</p> + +<p></p> +</body> +</html> diff --git a/sqwebmail/html/configure.in b/sqwebmail/html/configure.in new file mode 100644 index 0000000..9690cee --- /dev/null +++ b/sqwebmail/html/configure.in @@ -0,0 +1,34 @@ +dnl +dnl Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for +dnl distribution information. + +AC_INIT(sqwebmail, 0.23, [courier-sqwebmail@lists.sourceforge.net]) + +>confdefs.h  # Kill PACKAGE_ macros + +AC_CONFIG_SRCDIR(mksoftlinks) +AC_CONFIG_AUX_DIR(../../..) +AM_INIT_AUTOMAKE([foreign no-define]) + +AC_PROG_INSTALL +AC_PROG_MAKE_SET + +LANGUAGES="`cat ${srcdir}/*/LANGUAGE_PREF | sort | awk ' { print $2 } ' | uniq`" +LANGUAGES=`echo $LANGUAGES` + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +eval "prefix=$prefix" +eval "datadir=$datadir" +htmldir="$datadir/sqwebmail/html" + +AC_SUBST(htmldir) +AC_CONFIG_SUBDIRS($LANGUAGES) +AC_SUBST(LANGUAGES) +AC_OUTPUT(Makefile README_LANG.html) + +# Set up soft links + +for f in $LANGUAGES +do +	${srcdir}/mksoftlinks . $f +done diff --git a/sqwebmail/html/en-us/CHARSET b/sqwebmail/html/en-us/CHARSET new file mode 100644 index 0000000..e7dd27f --- /dev/null +++ b/sqwebmail/html/en-us/CHARSET @@ -0,0 +1 @@ +utf-8,iso-8859-1 diff --git a/sqwebmail/html/en-us/ISPELLDICT b/sqwebmail/html/en-us/ISPELLDICT new file mode 100644 index 0000000..97ab12f --- /dev/null +++ b/sqwebmail/html/en-us/ISPELLDICT @@ -0,0 +1 @@ +english diff --git a/sqwebmail/html/en-us/LANGUAGE b/sqwebmail/html/en-us/LANGUAGE new file mode 100644 index 0000000..7eda695 --- /dev/null +++ b/sqwebmail/html/en-us/LANGUAGE @@ -0,0 +1 @@ +en-us diff --git a/sqwebmail/html/en-us/LANGUAGE_PREF b/sqwebmail/html/en-us/LANGUAGE_PREF new file mode 100644 index 0000000..24ef327 --- /dev/null +++ b/sqwebmail/html/en-us/LANGUAGE_PREF @@ -0,0 +1 @@ +en50 en-us diff --git a/sqwebmail/html/en-us/LOCALE b/sqwebmail/html/en-us/LOCALE new file mode 100644 index 0000000..7741b83 --- /dev/null +++ b/sqwebmail/html/en-us/LOCALE @@ -0,0 +1 @@ +en_US diff --git a/sqwebmail/html/en-us/Makefile.am b/sqwebmail/html/en-us/Makefile.am new file mode 100644 index 0000000..029f198 --- /dev/null +++ b/sqwebmail/html/en-us/Makefile.am @@ -0,0 +1,44 @@ + +@SET_MAKE@ + +htmllibdir=@htmldir@/@lang@ +conf=LOCALE LANGUAGE LANGUAGE_PREF ISPELLDICT CHARSET TIMEZONELIST smileys.txt +html=abooklist.html acl.html attachments.html autoresponder.html \ +	     empty.html eventacl.html eventdaily.html \ +	     eventdelete.html eventmonthly.html \ +	     eventshow.html eventweekly.html expired.html folder.html \ +             folders.html index.html invalid.html keyimport.html login.html \ +	     filter.html ldaplist.html ldapsearch.html \ +             newevent.html newmsg.html preferences.html printnocookie.html \ +	     printredirect.html quickadd.html print.html readmsg.html \ +	     redirect.html refreshfr.html spellchk.html \ +	     gpg.html gpgcreate.html gpgerr.html \ +	     loginform.inc.html \ +	     navbar.inc.html navbar2.inc.html navbar3.inc.html \ +	     calendarlogin.inc.html \ +	     eventnotifynew.txt eventnotifydelete.txt eventnotifysubject.txt + +htmllib_DATA=$(conf) $(html) + +EXTRA_DIST=$(htmllib_DATA) + +install-data-hook: +	test -f ../../TIMEZONELIST || exit 0; \ +		@SED@ -n '/^\#/p' < $(srcdir)/TIMEZONELIST \ +			> $(DESTDIR)$(htmllibdir)/TIMEZONELIST ; \ +		cat ../../TIMEZONELIST >>$(DESTDIR)$(htmllibdir)/TIMEZONELIST + +clonedist: distdir +	-chmod -R a+r $(distdir) +	d=`pwd` ; cd $(distdir) ; GZIP=$(GZIP_ENV) $(AMTAR) chozf $$d/clone.tar.gz . +	-rm -rf $(distdir) + +install-perms: +	@echo "$(htmllibdir) 555 bin bin" >permissions.dat +	@for f in $(conf) ; do\ +		echo $(htmllibdir)/$$f 644 bin bin config >>permissions.dat ;\ +		done +	@for f in $(html) ; do\ +		echo $(htmllibdir)/$$f 644 bin bin >>permissions.dat ;\ +		done + diff --git a/sqwebmail/html/en-us/TIMEZONELIST b/sqwebmail/html/en-us/TIMEZONELIST new file mode 100644 index 0000000..533fe27 --- /dev/null +++ b/sqwebmail/html/en-us/TIMEZONELIST @@ -0,0 +1,22 @@ +# +# Copyright 2001 Double Precision, Inc.  See COPYING for +# distribution information. +# +# This file lists the available timezones in the login dropdown list +# +# The first entry, "* *", renders as an empty, default choice in the +# dropdown list.  It's impossible to provide a default list of every +# timezone in use, hence the default leaves your TZ setting untouched. +# +# You may wish to remove the default, and move up your local timezone +# up, since the first listed timezone is going to be the dropdown +# default. +# + +*		* +EST5EDT		US Eastern +EST		US Eastern/Indiana +CST6CDT		US Central +MST7MDT		US Mountain +MST		US Mountain/Arizona +PST8PDT		US Pacific diff --git a/sqwebmail/html/en-us/abooklist.html b/sqwebmail/html/en-us/abooklist.html new file mode 100644 index 0000000..d3d5a3e --- /dev/null +++ b/sqwebmail/html/en-us/abooklist.html @@ -0,0 +1,119 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Address Book</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$PROMPT=<table border="0"><tr><td align="right">Choose: </td><td>#] +[#$SUBMIT=</td><td><input type="submit" value="Edit" name="nick.edit" /><input type="submit" value="Delete" name="nick.delete" /></td></tr><tr><td align="right">New nickname:</td><td><input name="nick2" /></td><td><input type="submit" name="nick.edit2" value="Create" /></td></tr></table>#] +[#$TITLE1=<hr width="90%" /><div align="center"><font size="+2" class="nicktitle">#] +[#$TITLE2=</font></div>#] +[#$DELETE=Delete#] +[#$NAME=Name: #] +[#$ADDRESS=Address: #] +[#$ADD=Add#] +[#$EDIT=Edit#] +[#$SELECT1=<select name="nick" class="nicklist"><option value=""></option>#] +[#$SELECT2=</select>#] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Address Book</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr> +      <td bgcolor="#99ccff" class="bluebox"></td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"> +        <table width="100%" border="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle"> +                <form method="post" name="addressbook" action="[#R#]"> +                  [#P#]<input type="hidden" name="form" value="abooklist" +                  />[#a#] <br /> + +                  <hr /> + +                  <div align="center"> +                  <a +                  href="[#s#]&form=ldaplist">Global address book +                  search</a></div> +                </form> +              </td> +            </tr> +          </tbody> +        </table> +      </td> +      <td bgcolor="#99ccff" class="bluebox"></td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/acl.html b/sqwebmail/html/en-us/acl.html new file mode 100644 index 0000000..920e77f --- /dev/null +++ b/sqwebmail/html/en-us/acl.html @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html> +<head> +  <meta http-equiv="content-type" content="text/html" /> +  <title>Folder permissions</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.8.1, see http://www.w3.org/Amaya/" +  /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +  <script type="text/javascript" language="Javascript"> +<!-- + +function updent() +{ +	if (document.form1.entitytype.value == "user" +		|| document.form1.entitytype.value == "group" +		|| document.form1.entitytype.value == "other") +	{ +		document.form1.entity.disabled=false; +	} +	else +	{ +		document.form1.entity.disabled=true; +		document.form1.entity.value=""; +	} +} +//--> + + + + +  </script> +</head> + +<body onload="javascript:updent()"> +<!-- + +[#$FOLDERTITLE=Folder permissions - #] +[#$INBOX=INBOX#] +[#$DRAFTS=Drafts#] +[#$TRASH=Trash#] +[#$SENT=Sent#] +[#$PUBLICFOLDERS=<em>Public Folders</em>#] + +[#$ACL_a=<span class="acl-a">Administrator</span>#] +[#$ACL_c=<span class="acl-c">Create subfolders</span>#] +[#$ACL_e=<span class="acl-e">Expunge messages</span>#] +[#$ACL_i=<span class="acl-i">Insert messages</span>#] +[#$ACL_l=<span class="acl-l">Visible (lookup)</span>#] +[#$ACL_r=<span class="acl-r">Open</span>#] +[#$ACL_s=<span class="acl-s">Change read/unread status</span>#] +[#$ACL_t=<span class="acl-t">Mark messages as deleted</span>#] +[#$ACL_w=<span class="acl-w">Update message flags</span>#] +[#$ACL_x=<span class="acl-x">Delete folder</span>#] +[#$ACL_unknown=<em>Access type "%s" not implemented</em>#] + +[#$ACL_all=aceilrstwx#] + +[#$ACL_noaccess=<div class="small-error">You do not have administrative access to this folder</div>#] + +[#$ACL_failed=<div class="small-error">Requested permissions are not valid</div>#] + +[#$ENTITY=Entity#] +[#$ACCESSRIGHTS=Access Rights#] +[#$EDIT=edit#] +[#$DELETE=delete#] +[#$OR=or, user=#] +[#$UPDATEHDR=Update access rights:#] + +[#$UPDATE=Update#] + +[#$ACL_noaccess=<p class="small-error">Internal error - unable to update ACLs</p>#] +[#$ACL_cantread=<p class="small-error">ACL access denied.</p>#] + +[#$USER=user:#] +[#$GROUP=group:#] +[#$OWNER=owner#] +[#$ANONYMOUS=anonymous#] +[#$ADMINISTRATORS=administrators#] +[#$OTHER=other:#] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">[#f#]</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar2#] <!-- Border around the folders list --> + + +<div class="folder-acl-box"> + +<table> +  <tbody> +    <tr> +      <th colspan="2" align="left">Your have the following permissions on +        this folder:</th> +    </tr> +    <tr> +      <td>   </td> +      <td>[#LISTRIGHTS#]</td> +    </tr> +  </tbody> +</table> +<br /> + +<hr width="80%" /> +[#GETACL#] + +<p><a href="[#s#]&form=folders&folderdir=[#D#]">Finished</a></p> +<!-- ============ --> +</div> + +<p>[#B#]</p> +</div> +</body> +</html> diff --git a/sqwebmail/html/en-us/attachments.html b/sqwebmail/html/en-us/attachments.html new file mode 100644 index 0000000..8ef9c88 --- /dev/null +++ b/sqwebmail/html/en-us/attachments.html @@ -0,0 +1,186 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Attachments</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$NOATTACH=No attachments...#] +[#$QUOTAERR=<font style="color: #ff0000" size="+1" class="error">ERROR: You have exceeded your quota</font>#] +[#$LIMITERR=<font style="color: #ff0000" size="+1" class="error">ERROR: Maximum message size is %lu MB</font>#] +[#$MAKEMIMEERR=<font style="color: #ff0000" size="+1" class="error">%s: failed to MIME-encode the attachment.  Contact the system administrator.</font>#] + +[#$PRESERVELAB=Preserve a copy of the message in the Sent folder#] +[#$SIGNLAB=Sign message with: #] +[#$ENCRYPTLAB=Encrypt message to: #] +[#$PASSPHRASE=Passphrase (if required): #] +[#$DSN=Request delivery confirmation receipt#] + +[#$KEYDESCR=GnuPG key#] +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Attachments</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<form method="post" action="[#p#]" enctype="multipart/form-data"> +  <!--form method="get" action="[#p#]"--> +  [#P#] <input type="hidden" name="form" value="doattach" /> + +  <table cellpadding="0" cellspacing="0" border="0" width="95%"> +    <tbody> +      <tr style="line-height: 0"> +        <td align="left" valign="top">[#@bluetopleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +        <td style="line-height: 0" align="right" +          valign="top">[#@bluetopright.png, width="11" height="11" alt="" +          border="0"@@#]</td> +      </tr> +      <tr> +        <td bgcolor="#99ccff" class="bluebox"></td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"> +          <table border="0" cellpadding="4" cellspacing="0"> +            <tbody> +              <tr> +                <td> +                  <table width="100%" bgcolor="#000080" border="0" +                  cellpadding="4" cellspacing="0" class="attachments-header"> +                    <tbody> +                      <tr> +                        <th align="left"><span style="color: #ffff00" +                          class="attachments-header">    Attachment</span></th> +                        <th align="left"><span style="color: #ffff00" +                          class="attachments-header">MIME Type</span></th> +                        <th align="right"><span style="color: #ffff00" +                          class="attachments-header">Size</span></th> +                      </tr> +                    </tbody> +                  </table> + +                  <table width="100%" border="0" cellpadding="4" +                  cellspacing="0"> +                    <tbody> +                      <tr> +                        <td>[#A#]  +                          <input type="submit" value=" Delete selected " +                          name="dodelete" /> +                          <hr width="100%" /> + +                          <table border="0"> +                            <tbody> +                              <tr valign="middle"> +                                <td align="right"><input type="file" +                                  size="20" name="uploadfile" /></td> +                                <td> +                                  <input type="submit" value="Upload" +                                  name="upload" /></td> +                                <td><label><input type="checkbox" +                                  name="attach_inline" />Display attachment +                                  inline</label> <!-- [#?5#]--> +                                </td> +                              </tr> +                              <tr> +                                <td colspan="3"> +                                  <select name="pubkey"> +                                    <option +                                    selected="selected"></option>[#ATTACHPUB#] +                                  </select> +                                    +                                  <input type="submit" +                                  value="Attach public key" name="uppubkey" +                                /></td> +                              </tr> +                              <tr> +                                <td colspan="3"> +                                  <select name="privkey"> +                                    <option +                                    selected="selected"></option>[#ATTACHSEC#] +                                  </select> +                                    +                                  <input type="submit" +                                  value="Attach private key" name="upprivkey" +                                  /><input type="checkbox" name="really" +                                  />Yes, I really want to do this <!-- [#?#]--> +                                </td> +                              </tr> +                            </tbody> +                          </table> +                          <hr width="100%" /> +                          [#ATTACHOPTS#] <br /> + +                          <input type="submit" value="Preview" +                          name="previewmsg" />  +                          <input type="submit" value="Send" name="sendmsg" />  +                          <input type="submit" value="Save Draft" +                          name="savedraft" /></td> +                      </tr> +                    </tbody> +                  </table> +                </td> +              </tr> +            </tbody> +          </table> +        </td> +        <td bgcolor="#99ccff" class="bluebox"></td> +      </tr> +      <tr style="line-height: 0"> +        <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +        <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +          height="11" alt="" border="0"@@#]</td> +      </tr> +    </tbody> +  </table> +</form> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/autoresponder.html b/sqwebmail/html/en-us/autoresponder.html new file mode 100644 index 0000000..c16769a --- /dev/null +++ b/sqwebmail/html/en-us/autoresponder.html @@ -0,0 +1,141 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <meta name="GENERATOR" content="amaya 8.8.5, see http://www.w3.org/Amaya/" +  /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +  <title>Autoreplies</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +</head> + +<body> +<!-- + +[#$BADNAME=<span style="color: #ee0000">ERROR: Invalid character in autoreply name</span><br />#] +[#$EEXIST=<span style="color: #ee0000">ERROR: Autoreply name already exists</span><br />#] +[#$SAVEFAILED=<span style="color: #ee0000">ERROR: Unable to save autoreply text: %s</span><br />#] +[#$QUOTA=<span style="color: #ee0000">ERROR: autoreply exceeds allowed quota</span>#] +[#$ERROR=<span style="color: #ee0000">ERROR: %s</span><br />#] +[#$INUSE=<span style="color: #ee0000">ERROR: Autoreply <span class="tt">%s</span> currently used by a mail filter</span><br />#] + +[#$UPLOAD=Upload file: #] +[#$SAVE=Save#] + +[#$ATT=<table align="center" border="0" bgcolor="#000000" cellpadding="1" cellspacing="0" class="box-small-outer"><tr><td><table border="0" bgcolor="#eeeeee" cellpadding="4" cellspacing="0" width="100%" class="mailfilter"><tr><td>Attachment: %s</td></tr></table></td></tr></table><br /><br /><br />#] + +[#$CHSET=<table width="90%%" align="center" border="0" bgcolor="#000000"><tr><td><table width="100%%" border="0" bgcolor="#eeeeee"><tr><td style="padding: 1em">The above text is written in the "<span class="tt">%s</span>" character set,<br />and some characters could not be converted to your display's "<span class="tt">%s</span>" character set.</td></tr></table></td></tr></table>#] + +[#$TITLE1=<p align="center"><font size="+2" class="autoresptitle">#] +[#$TITLE2=</font></p>#] + +[#$TEXT1=<textarea style="font-family: courier;" cols="75" rows="10" name="text" wrap="soft" class="autoresptext">#] +[#$TEXT2=</textarea><br />#] + +--> +<!-- Top Header. Shows folder list and email address. --> + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Autoreplies</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<form method="post" enctype="multipart/form-data" action="[#R#]"> +  [#P#]<input type="hidden" name="form" value="autoresponder" /> + +  <table cellpadding="0" cellspacing="0" border="0" width="95%"> +    <tbody> +      <tr style="line-height: 0"> +        <td align="left" valign="top">[#@bluetopleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" +        width="100%"></td> +        <td style="line-height: 0" align="right" +          valign="top">[#@bluetopright.png, width="11" height="11" alt="" +          border="0"@@#]</td> +      </tr> +      <tr> +        <td bgcolor="#99ccff" class="bluebox"></td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"> +          <table border="0" cellpadding="4" cellspacing="0" width="100%" +          class="mailfilter"> +            <tbody> +              <tr> +                <td colspan="2" align="center">[#AUTORESPONSE_DELETE#]</td> +              </tr> +              <tr> +                <td align="right">Existing autoreplies:</td> +                <td>[#select:autoresponse_choose:autoresplist#][#option:#][#endoption#][#AUTORESPONSE_LIST#][#endselect#]  +                  <input type="submit" value="Edit" name="do.autorespedit" />  +                  <input type="submit" value="Delete" +                  name="do.autorespdelete" /></td> +              </tr> +              <tr> +                <td align="right">Create new autoreply:</td> +                <td><input type="text" size="20" name="newname" />  +                  <input type="submit" value="Create" name="do.newautoresp" +                /></td> +              </tr> +              <tr> +                <td colspan="2"><hr width="90%" /> +                </td> +              </tr> +              <tr> +                <td colspan="2">[#AUTORESPONSE#]</td> +              </tr> +            </tbody> +          </table> +        </td> +        <td bgcolor="#99ccff" class="bluebox"></td> +      </tr> +      <tr style="line-height: 0"> +        <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +        <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +          height="11" alt="" border="0"@@#]</td> +      </tr> +    </tbody> +  </table> +</form> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/calendarlogin.inc.html b/sqwebmail/html/en-us/calendarlogin.inc.html new file mode 100644 index 0000000..e1b5d79 --- /dev/null +++ b/sqwebmail/html/en-us/calendarlogin.inc.html @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title></title> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- Do not alter the following comment --> +<!-- [#begininclude#] --> + +<div align="center" class="small-error"> +Lost connection to the calendar server!</div> + +<form method="post" action="[#S#]"> +  [#P#] <input type="hidden" name="form" value="folders" /> + +  <table border="0" align="center"> +    <tbody> +      <tr> +        <th align="right">Login password:</th> +        <td><input type="password" size="16" name="password" /></td> +      </tr> +      <tr> +        <td> </td> +        <td> +          <input type="submit" value="Try to log in again" +          name="do.calendarlogin" /></td> +      </tr> +    </tbody> +  </table> +</form> +[#endinclude#] <!-- do not alter the previous tag --> +</body> +</html> diff --git a/sqwebmail/html/en-us/configure.in b/sqwebmail/html/en-us/configure.in new file mode 100644 index 0000000..ab788e4 --- /dev/null +++ b/sqwebmail/html/en-us/configure.in @@ -0,0 +1,36 @@ +dnl + +AC_INIT(sqwebmail, 0.11, [courier-sqwebmail@lists.sourceforge.net]) + +>confdefs.h  # Kill PACKAGE_ macros + +AC_CONFIG_SRCDIR(empty.html) + +AC_CONFIG_AUX_DIR(../../../..) +AM_INIT_AUTOMAKE([foreign no-define]) + +changequote(:,:) +lang="`cat ${srcdir}/LANGUAGE | sed 's/[^a-zA-z]/_/g'`" +changequote([,]) + +LPATH="$PATH:/usr/local/bin" +AC_PATH_PROG(SED, sed, sed, $LPATH) +if test "$SED" = "sed" +then +	AC_MSG_ERROR(sed not found.) +fi + +lang=`cat ${srcdir}/LANGUAGE` +AC_SUBST(lang) + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +eval "prefix=$prefix" +eval "datadir=$datadir" +htmldir="$datadir/sqwebmail/html" +AC_SUBST(htmldir) + + +AC_SUBST(htmldir) +AC_PROG_INSTALL +AC_PROG_MAKE_SET +AC_OUTPUT(Makefile) diff --git a/sqwebmail/html/en-us/empty.html b/sqwebmail/html/en-us/empty.html new file mode 100644 index 0000000..1da1c37 --- /dev/null +++ b/sqwebmail/html/en-us/empty.html @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>SqWebMail - Empty placeholder page</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> + </body> +</html> diff --git a/sqwebmail/html/en-us/eventacl.html b/sqwebmail/html/en-us/eventacl.html new file mode 100644 index 0000000..fbdb4de --- /dev/null +++ b/sqwebmail/html/en-us/eventacl.html @@ -0,0 +1,158 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Calendar Access Control List</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- +[#$MODIFY=MODIFY#] +[#$CONFLICT=CONFLICT#] +[#$REMOVE=<font size="-1">(remove)</font>#] +[#$NOACL=ERROR: Server does not support ACLs#] +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Calendar Access Control List</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="50%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr bgcolor="#99ccff" class="bluebox"> +      <td valign="middle"> </td> +      <td valign="middle" width="100%"> +        <div align="center" class="accesscontroltitle"> +        Access Control List Key</div> +        <br /> + + +        <table align="center" border="0"> +          <tbody> +            <tr valign="top"> +              <td><span class="tt">MODIFY</span></td> +              <td>- allow updates to your calendar</td> +            </tr> +            <tr valign="top"> +              <td><span class="tt">CONFLICT</span></td> +              <td>- allow updates causing a scheduling conflict</td> +            </tr> +          </tbody> +        </table> +        <hr width="90%" /> +        <br /> +        [#EVENTACL#] <br /> + +        <hr width="90%" /> + +        <form method="post" action="[#R#]"> +          [#P#]<input type="hidden" name="form" value="eventacl" /> + +          <div align="center" class="addaccesscontroltitle"> +          Add Access</div> +          <br /> + + +          <table border="0"> +            <tbody> +              <tr valign="top"> +                <td>Add:</td> +                <td> +                  <table border="0"> +                    <tbody> +                      <tr> +                        <td><input type="text" size="20" name="addemail" +                          style="font-family: monospace" /></td> +                      </tr> +                      <tr> +                        <td>or:</td> +                      </tr> +                      <tr> +                        <td>[#ABOOKNAMELIST#]</td> +                      </tr> +                    </tbody> +                  </table> +                </td> +                <td rowspan="2"><label><input type="checkbox" +                  checked="checked" name="aclMODIFY" +                  /> MODIFY</label><br /> +                  <label><input type="checkbox" name="aclCONFLICT" +                  /> CONFLICT</label></td> +                <td> </td> +              </tr> +              <tr> +                <td> </td> +                <td><font size="-1">(E-mail address)</font></td> +                <td> </td> +              </tr> +            </tbody> +          </table> + +          <input type="submit" value="Add" name="submit" /></form> +      </td> +      <td valign="middle"> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +[#EVENTEND#]</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/eventdaily.html b/sqwebmail/html/en-us/eventdaily.html new file mode 100644 index 0000000..bea0f07 --- /dev/null +++ b/sqwebmail/html/en-us/eventdaily.html @@ -0,0 +1,125 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Calendar for [#CALENDARTODAY#]</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$DATEFORMAT=%A, %B %e %Y#] + +[#$NOEVENTS=<div align="center"><em>No events for today</em></div>#] + +[#$PREVDAY=<< %x#] +[#$NEXTDAY=%x >>#] +[#$CANCELLED=CANCELLED: #] +[#$BOOKED=PENDING: #] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Calendar for [#CALENDARTODAY#]</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr> +      <td bgcolor="#99ccff" class="bluebox"> </td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"> +        <table class="dailycalendar" width="100%" border="0"> +          <tbody> +            <tr valign="top"> +              <td align="left">[#CALENDARPREVDAY#]</td> +              <td align="center" class="dailycalendardate" +                width="100%">[#CALENDARTODAYV#]</td> +              <td align="left">[#CALENDARNEXTDAY#]</td> +            </tr> +            <tr> +              <td> </td> +              <td align="center"><a class="dailycalendarweeklylink" +                href="[#CALENDARWEEKLYLINK#]">Weekly view</a>/<a +                class="dailycalendarmonthlylink" +                href="[#CALENDARMONTHLYLINK#]">Monthly view</a><br /> +                <a class="dailycalendarneweventlink" +                href="[#s#]&form=newevent">New Event</a></td> +              <td> </td> +            </tr> +            <tr> +              <td colspan="3"><hr width="100%" /> +                <br /> +              </td> +            </tr> +            <tr> +              <td colspan="3">[#CALENDARDAYVIEW#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td bgcolor="#99ccff" class="bluebox"> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/eventdelete.html b/sqwebmail/html/en-us/eventdelete.html new file mode 100644 index 0000000..498a325 --- /dev/null +++ b/sqwebmail/html/en-us/eventdelete.html @@ -0,0 +1,138 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Delete Event</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$PROXYWARN=<br /><table border="0" width="50%" align="center"><tr><td class="small-error">Warning: this event was placed on your calendar by the event's organizer. If you delete it, a subsequent event update will go back on your calendar. Consider marking this event as cancelled, instead.</td></tr></table>#] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Event Delete</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr> +      <td bgcolor="#99ccff" class="bluebox"> </td> +      <td class="calendarevent" valign="middle" +        width="100%">[#EVENTDELETEINIT#] + +        <table border="0" cellspacing="8" cellpadding="8" width="100%"> +          <tbody> +            <tr> +              <td> +                <table class="box-outer" border="0" cellspacing="1" +                cellpadding="1" align="center"> +                  <tbody> +                    <tr> +                      <td> +                        <table width="100%" class="box-white-outer" +                        cellspacing="4" cellpadding="4" border="0"> +                          <tbody> +                            <tr> +                              <td> +                                <form method="post" action="[#p#]"> +                                  [#P#] <input type="hidden" name="eventid" +                                  value="[#input:eventid#]" /><input +                                  type="hidden" name="form" value="eventshow" +                                  /><input type="hidden" name="date" +                                  value="[#input:date#]" /> + +                                  <p align="center">Delete the following +                                  event?</p> + +                                  <p align="center"> +                                  <input type="submit" value="Delete" +                                  name="do.eventdelete" />   +                                  <input type="submit" value="Cancel" +                                  name="cancel" /></p> +                                </form> +                              </td> +                            </tr> +                          </tbody> +                        </table> +                      </td> +                    </tr> +                  </tbody> +                </table> +              </td> +            </tr> +            <tr> +              <td><hr width="100%" /> +                [#EVENTDISPLAY#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td bgcolor="#99ccff" class="bluebox"> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/eventmonthly.html b/sqwebmail/html/en-us/eventmonthly.html new file mode 100644 index 0000000..9b3f8f9 --- /dev/null +++ b/sqwebmail/html/en-us/eventmonthly.html @@ -0,0 +1,121 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>[#CALENDARMONTH#]</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$DATEFORMAT=%B %Y#] + +[#$NOEVENTS=<div align="center"><em>No events</em></div>#] + +[#$CANCELLED=CANCELLED: #] +[#$BOOKED=PENDING: #] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">[#CALENDARMONTH#]</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr> +      <td bgcolor="#99ccff" class="bluebox"> </td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"> +        <table class="dailycalendar" width="100%" border="0"> +          <tbody> +            <tr valign="top"> +              <td align="left"><a +                href="[#CALENDARPREVMONTH#]"><< Prev month</a></td> +              <td align="center" class="dailycalendardate" +                width="100%">[#CALENDARMONTH#]</td> +              <td align="left"><a +                href="[#CALENDARNEXTMONTH#]">Next month >></a></td> +            </tr> +            <tr> +              <td> </td> +              <td align="center"><a class="dailycalendarneweventlink" +                href="[#s#]&form=newevent">New Event</a></td> +              <td> </td> +            </tr> +            <tr> +              <td colspan="3"><hr width="100%" /> +                <br /> +              </td> +            </tr> +            <tr> +              <td colspan="3" width="100%">[#CALENDARMONTHVIEW#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td bgcolor="#99ccff" class="bluebox"> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/eventnotifydelete.txt b/sqwebmail/html/en-us/eventnotifydelete.txt new file mode 100644 index 0000000..921caf4 --- /dev/null +++ b/sqwebmail/html/en-us/eventnotifydelete.txt @@ -0,0 +1,8 @@ +Mime-Version: 1.0 +Content-Type: text/plain; format=flowed; charset=iso-8859-1 +Content-Transfer-Encoding: 8bit + +This event has been removed from your calendar.  + + + diff --git a/sqwebmail/html/en-us/eventnotifynew.txt b/sqwebmail/html/en-us/eventnotifynew.txt new file mode 100644 index 0000000..adc11b3 --- /dev/null +++ b/sqwebmail/html/en-us/eventnotifynew.txt @@ -0,0 +1,8 @@ +Mime-Version: 1.0 +Content-Type: text/plain; format=flowed; charset=iso-8859-1 +Content-Transfer-Encoding: 8bit + +Your calendar has been updated with this new or revised calendar event.  +See your calendar for additional information.  + + diff --git a/sqwebmail/html/en-us/eventnotifysubject.txt b/sqwebmail/html/en-us/eventnotifysubject.txt new file mode 100644 index 0000000..881db57 --- /dev/null +++ b/sqwebmail/html/en-us/eventnotifysubject.txt @@ -0,0 +1,2 @@ +[calendar] + diff --git a/sqwebmail/html/en-us/eventshow.html b/sqwebmail/html/en-us/eventshow.html new file mode 100644 index 0000000..27afc9a --- /dev/null +++ b/sqwebmail/html/en-us/eventshow.html @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Event</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$EVENT=Event:    #] +[#$PARTICIPANTS=Participants:    #] + +[#$QUOTAERR=<font style="color: #ff0000" size="+1" class="error">ERROR: You have exceeded your quota</font>#] + +[#$CONFLICTERR=<font style="color: #ff0000" size="+1" class="error">ERROR: Scheduling conflict - select "Uncancel" again to override.</font><br /><br />#] + +[#$NOTFOUNDERR=<font style="color: #ff0000" size="+1" class="error">ERROR: Event not found.</font><br /><br />#] + +[#$CALENDARERR=<font style="color: #ff0000" size="+1" class="error">ERROR: An error has occured when updating the calendar: <div style="margin-left: 3.5em;"><span class="tt">%s</span></div></font><br /><br />#] + +[#$LOCKERR=<font style="color: #ff0000" size="+1" class="error">ERROR: An error has occured trying to lock the calendar.  Please try again.</font><br /><br />#] + +[#$CANCELIMAGE=@@cancel.png, width="28" height="20" alt="Cancel event" title="Cancel event" border="0"@@#] +[#$UNCANCELIMAGE=@@uncancel.png, width="28" height="20" alt="Uncancel event" title="Uncancel event" border="0"@@#] + +[#$CANCELTEXT=Cancel event#] +[#$UNCANCELTEXT=Uncancel event#] + + +[#$NOTFOUNDERR=<font style="color: #ff0000" size="+1" class="error">ERROR: The original event was not found.  This can happen if this event was updated or modified by someone else.</font>#] + +[#$ATTACHMENT=Attachment: %s#] + +[#$DISPATT=<span class="message-attachment-link">Display</span>#] +[#$DOWNATT=<span class="message-attachment-link">Download</span>#] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Event</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr> +      <td bgcolor="#99ccff" class="bluebox"> </td> +      <td class="calendarevent" valign="middle" +        width="100%">[#EVENTDISPLAYINIT#] + +        <table border="0" cellspacing="8" cellpadding="8" width="100%"> +          <tbody> +            <tr> +              <td> +                <table border="0"> +                  <tbody> +                    <tr valign="bottom"> +                      <td align="center"><a +                        href="[#EVENTBACKLINK#]">[#@calendar.png, width="31" +                        height="22" alt="Return to calendar" +                        title="Return to calendar" +                        border="0"@@#]</a><br /> +                        <a href="[#EVENTBACKLINK#]"><font size="1">Return to +                        calendar</font></a></td> +                      <td width="10"> </td> +                      <td align="center"><a +                        href="[#EVENTEDITLINK#]">[#@reply.png, width="28" +                        height="20" border="0" title="Edit Event" alt="Edit +                        Event"@@#]</a><br /> +                        <a href="[#EVENTEDITLINK#]"><font +                        size="1">Modify event</font></a></td> +                      <td width="10"> </td> +                      <td align="center"><a +                        href="[#EVENTCANCELUNCANCELLINK#]">[#EVENTCANCELUNCANCELIMAGE#]</a><br +                        /> +                        <a href="[#EVENTCANCELUNCANCELLINK#]"><font +                        size="1">[#EVENTCANCELUNCANCELTEXT#]</font></a></td> +                      <td width="10"> </td> +                      <td align="center"><a +                        href="[#EVENTDELETELINK#]">[#@trash2.png, width="28" +                        height="20" border="0" title="Delete Event" +                        alt="Delete Event"@@#]</a><br /> +                        <a href="[#EVENTDELETELINK#]"><font +                        size="1">Delete event</font></a></td> +                      <td width="10"> </td> +                      <td align="center"><a +                        href="[#s#]&form=newevent">[#@replyall.png, +                        width="28" height="20" border="0" title="New Event" +                        alt="New Event"@@#]</a><br /> +                        <a href="[#s#]&form=newevent"><font +                        size="1">New event</font></a></td> +                      <td width="10"> </td> +                    </tr> +                  </tbody> +                </table> +              </td> +            </tr> +            <tr> +              <td><hr width="100%" /> +                [#EVENTDISPLAY#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td bgcolor="#99ccff" class="bluebox"> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/eventweekly.html b/sqwebmail/html/en-us/eventweekly.html new file mode 100644 index 0000000..f553165 --- /dev/null +++ b/sqwebmail/html/en-us/eventweekly.html @@ -0,0 +1,123 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Week of [#CALENDARWEEK#]</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$DATEFORMAT=%B %e, %Y#] + +[#$NOEVENTS=<div align="center"><em>No events</em></div>#] + +[#$CANCELLED=CANCELLED: #] +[#$BOOKED=PENDING: #] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Week of [#CALENDARWEEK#]</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr> +      <td bgcolor="#99ccff" class="bluebox"> </td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"> +        <table class="dailycalendar" width="100%" border="0"> +          <tbody> +            <tr valign="top"> +              <td align="left"><a +                href="[#CALENDARPREVWEEK#]"><< Prev week</a></td> +              <td align="center" class="dailycalendardate" +                width="100%">Week of [#CALENDARWEEK#]</td> +              <td align="left"><a +                href="[#CALENDARNEXTWEEK#]">Next week >></a></td> +            </tr> +            <tr> +              <td> </td> +              <td align="center"><a class="dailycalendarmonthlylink" +                href="[#CALENDARMONTHLYLINK#]">Monthly view</a><br /> +                <a class="dailycalendarneweventlink" +                href="[#s#]&form=newevent">New Event</a></td> +              <td> </td> +            </tr> +            <tr> +              <td colspan="3"><hr width="100%" /> +                <br /> +              </td> +            </tr> +            <tr> +              <td colspan="3" width="100%">[#CALENDARWEEKVIEW#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td bgcolor="#99ccff" class="bluebox"> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/expired.html b/sqwebmail/html/en-us/expired.html new file mode 100644 index 0000000..6278db8 --- /dev/null +++ b/sqwebmail/html/en-us/expired.html @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Sqwebmail. Expired Login.</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.8.1, see http://www.w3.org/Amaya/" +  /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body onload="init();"> +<script type="text/javascript" language="Javascript"> +<!-- + +function init() +{ +document.logon.username.focus(); +} +//--> + + +  </script> +[#include:loginform#] + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0" width="400"> +  <tbody> +    <tr> +      <td align="left"><p class="error">Your request cannot be authenticated. +        Either your session has timed out, or your IP address has changed. If +        you are dialing in via a modem, this can happen if you get +        disconnected. After reconnecting, you must log in again.</p> +      </td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/filter.html b/sqwebmail/html/en-us/filter.html new file mode 100644 index 0000000..88e3d71 --- /dev/null +++ b/sqwebmail/html/en-us/filter.html @@ -0,0 +1,354 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <meta name="generator" content="Bluefish 2.0.1" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +  <title>Mail Filters</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +</head> + +<body> +<!-- + +[#$BADIMPORT=<span style="color: #ee0000">ERROR: You have an incompatible existing mail filter, contact your system administrator</span><br />#] +[#$BADRULENAME=<span style="color: #ee0000">ERROR: Invalid or missing rule name, please reenter</span><br />#] +[#$EXISTS=<span style="color: #ee0000">ERROR: Rule name already exists, please reenter</span><br />#] +[#$BADHEADER=<span style="color: #ee0000">ERROR: Invalid or missing header name, please reenter</span><br />#] +[#$AUTOREPLY=<span style="color: #ee0000">ERROR: Invalid or missing autoreply name, please reenter</span><br />#] +[#$BADVALUE=<span style="color: #ee0000">ERROR: Invalid or missing header pattern or recipient address, please reenter</span><br />#] +[#$ERRTOFOLDER=<span style="color: #ee0000">ERROR: Invalid or missing folder, forwarding address, or error message, please reenter</span><br />#] +[#$FROMHDR=<span style="color: #ee0000">ERROR: Invalid characters in the custom <span class="tt">From:</span> header, please reenter</span><br />#] +[#$INTERNAL=<span style="color: #ee0000">ERROR: Unable to save rule - contact system administrator</span><br />#] +[#$UPDATED=<span style="color: #008000">The following filters have been saved:</span><br />#] +[#$INBOX=INBOX#] +[#$DRAFTS=Drafts#] +[#$TRASH=Trash#] +[#$SENT=Sent#] + +--> + +<div align="center"> +<!-- Top Header. Shows folder list and email address. --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Mail Filters</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar3#] <!-- End of List of Sections. Folders, Create Messages, Etc. --> + <!-- Border around the folders list --> + + +<form method="post" action="[#R#]"> +  [#P#]<input type="hidden" name="form" value="filter" /> + +  <table cellpadding="0" cellspacing="0" border="0" width="95%"> +    <tbody> +      <tr style="line-height: 0"> +        <td align="left" valign="top">[#@bluetopleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +        <td style="line-height: 0" align="right" +          valign="top">[#@bluetopright.png, width="11" height="11" alt="" +          border="0"@@#]</td> +      </tr> +      <tr> +        <td bgcolor="#99ccff" class="bluebox"></td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"> +          <table border="0" cellpadding="4" cellspacing="0" width="100%" +          class="mailfilter"> +            <tbody> +              <tr> +                <td align="center"><font size="+1" +                  class="mailfilter-title">Existing mail filters:</font></td> +              </tr> +              <tr valign="middle"> +                <td> +                  <table border="0" width="100%"> +                    <tbody> +                      <tr> +                        <td align="center">[#LOADMAILFILTER#]  +                          <select name="currentfilter" +                            size="8">[#MAILFILTERLIST#] +                          </select> +                        </td> +                      </tr> +                      <tr> +                        <td align="center"> +                          <input type="submit" value="Up" name="do.moveup" />  +                          <input type="submit" value="Down" +                          name="do.movedown" />  +                          <input type="submit" value="Edit" name="do.edit" />  +                          <input type="submit" value="Delete" +                          name="do.delete" />  +                          <input type="submit" value="Add" name="do.add" +                        /></td> +                      </tr> +                      <tr> +                        <td align="center"> +                          <input type="submit" value="Save all changes" +                          name="do.save" /></td> +                      </tr> +                    </tbody> +                  </table> +                </td> +              </tr> +              <tr> +                <td><hr width="90%" /> +                </td> +              </tr> +              <tr> +                <td align="center"><font size="+1" +                  class="mailfilter-title">Edit/Add mail filter</font></td> +              </tr> +              <tr> +                <td> +                  <table border="0"> +                    <tbody> +                      <tr> +                        <td>Rule name:</td> +                        <td><input type="text" size="20" name="rulename" +                          value="[#input:rulename#]" /></td> +                      </tr> +                      <tr> +                        <td></td> +                        <td colspan="0"><hr width="100%" /> +                        </td> +                      </tr> +                      <tr valign="middle"> +                        <td>Condition:</td> +                        <td> +                          <table border="0"> +                            <tbody> +                              <tr> +                                <td>[#radio:filtertype:header#]</td> +                                <td> +                                  <table border="0" cellpadding="0"> +                                    <tbody> +                                      <tr> +                                        <td rowspan="2">Header <input +                                          type="text" size="20" +                                          value="[#input:headername#]" +                                          name="headername" +                                          />, or [#radio:filtertype:body#] Body</td> +                                        <td>[#select:headermatchtype#] +                                          [#option:startswith:headermatch:startswith#] +                                          starts with [#endoption#] +                                          [#option:contains:headermatch:contains#] +                                          contains [#endoption#] +                                          [#option:endswith:headermatch:endswith#] +                                          ends with [#endoption#] +                                          [#option:notstartswith:headermatch:notstartswith#] +                                          doesn't start with [#endoption#] +                                          [#option:notcontains:headermatch:notcontains#] +                                          doesn't contain [#endoption#] +                                          [#option:notendswith:headermatch:notendswith#] +                                          doesn't end with [#endoption#] +                                          [#endselect#]</td> +                                        <td><input type="text" size="20" +                                          name="headervalue" +                                          value="[#input:headervalue#]" +                                        /></td> +                                      </tr> +                                      <tr> +                                        <td +                                          align="right">[#checkbox:autoresponse_regexp:autoresponse_regexp#]</td> +                                        <td>this is a regular expression (a pattern)</td> +                                      </tr> +                                    </tbody> +                                  </table> +                                </td> +                              </tr> +                              <tr> +                                <td>[#radio:filtertype:anymessage#]</td> +                                <td>Any message</td> +                              </tr> +                              <tr> +                                <td>[#radio:filtertype:hasrecipient#]</td> +                                <td>[#select:hasrecipienttype#] +                                  [#option:hasrecipient:hasrecipienttype:hasrecipient#] +                                  Addressed to [#endoption#] +                                  [#option:nothasrecipient:hasrecipienttype:nothasrecipient#] +                                  Not addressed to [#endoption#] +                                  [#endselect#]  <input type="text" +                                  size="20" name="hasrecipientaddr" +                                  value="[#input:hasrecipientaddr#]" /></td> +                              </tr> +                              <tr> +                                <td>[#radio:filtertype:hastextplain#]</td> +                                <td>Is a plain text message</td> +                              </tr> +                              <tr> +                                <td>[#radio:filtertype:nothastextplain#]</td> +                                <td>Is not a plain text message (HTML, attachments, ...)</td> +                              </tr> +                              <tr> +                                <td>[#radio:filtertype:hasmultipart#]</td> +                                <td>Is a multipart MIME message</td> +                              </tr> +                              <tr> +                                <td>[#radio:filtertype:nothasmultipart#]</td> +                                <td>Is not a multipart MIME message</td> +                              </tr> +                              <tr> +                                <td>[#radio:filtertype:hassize#]</td> +                                <td>Message is [#select:sizecompare#] +                                  [#option:islargerthan:sizecompare:islargerthan#] +                                  larger than [#endoption#] +                                  [#option:issmallerthan:sizecompare:issmallerthan#] +                                  smaller than [#endoption#] [#endselect#] +                                  <input type="text" size="8" +                                  name="bytecount" +                                  value="[#input:bytecount#]" /> bytes</td> +                              </tr> +                            </tbody> +                          </table> +                        </td> +                      </tr> +                      <tr> +                        <td></td> +                        <td colspan="0"><hr width="100%" /> +                        </td> +                      </tr> +                      <tr valign="middle"> +                        <td>Action:</td> +                        <td> +                          <table border="0"> +                            <tbody> +                              <tr> +                                <td>[#radio:action:savefolder#]</td> +                                <td>Save in:</td> +                                <td>[#MAILFILTERLISTFOLDERS#]</td> +                                <td +                                  rowspan="2">[#checkbox:continuefiltering:continuefiltering#] and continue filtering.</td> +                              </tr> +                              <tr> +                                <td>[#radio:action:forwardto#]</td> +                                <td>Forward to:</td> +                                <td><input type="text" size="20" +                                  name="forwardaddy" +                                  value="[#input:forwardaddy#]" /></td> +                              </tr> +                              <tr> +                                <td colspan="4"> </td> +                              </tr> +                              <tr> +                                <td>[#radio:action:bounce#]</td> +                                <td>Reject with error:</td> +                                <td colspan="2"><input type="text" size="20" +                                  name="bouncemsg" +                                  value="[#input:bouncemsg#]" /></td> +                              </tr> +                              <tr valign="top"> +                                <td>[#radio:action:autoresponse#]</td> +                                <td>Send an autoreply:</td> +                                <td +                                  colspan="2">[#select:autoresponse_choose#] +                                  [#option:#][#endoption#] +                                  [#AUTORESPONSE_PICK#] [#endselect#] <br /> +                                  [#checkbox:autoresponse_dsn:autoresponse_dsn#]Use +                                  DSN format for autoreplies<br /> +                                  [#checkbox:autoresponse_dupe:autoresponse_dupe#]Suppress +                                  duplicate autoreplies for <input +                                  type="text" size="4" +                                  name="autoresponse_days" +                                  value="[#input:autoresponse_days#]" +                      	          />days<br /> +                                  [#checkbox:autoresponse_noquote:autoresponse_noquote#]Do not quote the original message +                                  in the autoreply text</td> +                              </tr> +                              <tr> +                                <td></td> +                                <td>Custom <span class="tt">From:</span> +                                  header:</td> +                                <td colspan="2"><input type="text" size="20" +                                  name="autoresponse_from" +                                  value="[#input:autoresponse_from#]" /></td> +                              </tr> +                              <tr> +                                <td>[#radio:action:purge#]</td> +                                <td>Purge</td> +                                <td colspan="2"> </td> +                              </tr> +                            </tbody> +                          </table> +                        </td> +                      </tr> +                      <tr> +                        <td></td> +                        <td colspan="0"><hr width="100%" /> +                        </td> +                      </tr> +                      <tr> +                        <td></td> +                        <td colspan="0"> +                          <input type="submit" value="Submit" +                          name="do.submitfilter" /></td> +                      </tr> +                    </tbody> +                  </table> +                </td> +              </tr> +              <tr> +                <td><hr width="90%" /> +                </td> +              </tr> +              <tr> +                <td align="center">IMPORTANT: You <strong>MUST</strong> +                  select "Save all changes", above, for any changes to take +                  effect.</td> +              </tr> +            </tbody> +          </table> +        </td> +        <td bgcolor="#99ccff" class="bluebox"></td> +      </tr> +      <tr style="line-height: 0"> +        <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +        <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +          height="11" alt="" border="0"@@#]</td> +      </tr> +    </tbody> +  </table> +</form> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/folder.html b/sqwebmail/html/en-us/folder.html new file mode 100644 index 0000000..4f5d9c5 --- /dev/null +++ b/sqwebmail/html/en-us/folder.html @@ -0,0 +1,243 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <meta http-equiv="content-type" content="text/html" /> +  <title>Folder contents</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="generator" content="Bluefish 2.0.2" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> + +<script language="javascript" type="text/javascript"> + +function ff(s) { +	var e; + +	if (document.getElementById) +	{ +		e=document.getElementById(s); +	} +	else if (document.all) +	{ +		e=document[s]; +	} + +	return e; +} + +function setsel(c,r,s) { + +	var x=ff(r); +	var v=ff(c); + +	if (v != null && x != null) +	{ +		if (v.checked) +		{ +			x.className="folder-index-bg-sel"; +		} +		else +		{ +			x.className=s; +		} +	} + +} + +function deleteAll() { +	if (confirm("Do you really want to delete all messages from current folder?")) +	{ +		return true; +	} +	return false; +} + +</script> + +<!-- + +[#$DSPFMT_YDATE=%d %b %Y#] +[#$DSPFMT_WDATE=%a %I:%M %p#] + +[#$NUM=<span style="color: #ffff00" class="folder-index-header">#</span>#] +[#$DATE=<span style="color: #ffff00" class="folder-index-header">Date</span>#] +[#$FROM=<span style="color: #ffff00" class="folder-index-header">From</span><br />#] +[#$TO=<span style="color: #ffff00" class="folder-index-header">To</span><br />#] +[#$SUBJECT=<span style="color: #ffff00" class="folder-index-header">Subject</span>#] +[#$SIZE=<span style="color: #ffff00" class="folder-index-header">Size</span><br />#] +[#$FOLDERTITLE=Folder - #] +[#$SEARCHRESULTSTITLE=Search Results - #] +[#$SHOWNCOUNT=Shown: %ld - %ld of %ld#] +[#$RETURNTOFOLDER=Return to folder#] +[#$LASTMESSAGESEARCHED=Last searched message was #%ld#] +[#$JUMPTO=Jump to:#] +[#$NOMESSAGES=No messages...#] +[#$DELETE=Delete#] +[#$PURGEALL=Purge All#] +[#$PURGE=Purge Selected#] +[#$ORMOVETO=, or move to:#] +[#$GO=Go#] +[#$FIRSTPAGE=@@first.png, width="48" height="24" alt="First Page" title="First Page"@First@#] +[#$PREVPAGE=@@left.png, width="48" height="24" alt="Prev Page" title="Prev Page"@Prev@#] +[#$NEXTPAGE=@@right.png, width="48" height="24" alt="Next Page" title="Next Page"@Next@#] +[#$LASTPAGE=@@last.png, width="48" height="24" alt="Last Page" title="Last Page"@Last@#] +[#$SELECTALL=Select all shown#] +[#$UNSELECTALL=Deselect all shown#] +[#$INBOX=INBOX#] +[#$DRAFTS=Drafts#] +[#$TRASH=Trash#] +[#$SENT=Sent#] +[#$PUBLICFOLDERS=<em>Public Folders</em>#] +[#$PERMERR=<span class="error">ERROR: You do not have the permission to create messages in this folder, or you have exceeded your mail quota.</span>#] +[#$NODELPERM=<span class="error">ERROR: You do not have the permission to remove messages from this folder.</span>#] +[#$NOINSERTPERM=<span class="error">ERROR: You do not have the permission to insert messages into the destination folder.</span>#] +[#$OTHERERROR=<span class="error">ERROR: Some error occurred, please try again later or contact site administrator.</span>#] +[#$ACL=<span class="error">ERROR: You do not have the permission to open this folder</span>#] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">[#f#]</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar2#] <!-- Border around the folders list --> + + +<div class="folder-index-box"> + +<form method="post" name="delete" action="[#p#]"> +  [#P#]<input type="hidden" name="form" value="folderdel" /> +  <table border="0" width="100%" bgcolor="#000000" cellpadding="2" +  cellspacing="2" class="folder-index-background"> +    <tbody> +      <tr> +        <td bgcolor="#ffffff" class="folder-index-background-2">[#F#]</td> +      </tr> +    </tbody> +  </table> +  <!-- ===========  --> + +  <table cellpadding="0" cellspacing="0" border="0" width="100%"> +    <tbody> +      <tr style="line-height: 0"> +        <td align="left" valign="top">[#@bluetopleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" +        width="100%"></td> +        <td style="line-height: 0" align="right" +          valign="top">[#@bluetopright.png, width="11" height="11" alt="" +          border="0"@@#]</td> +      </tr> +      <tr> +        <td bgcolor="#99ccff" class="bluebox"></td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"> +          <table border="0" width="100%"> +            <tbody> +              <tr> +                <td align="left" width="100%" valign="middle">[#T#]</td> +              </tr> +            </tbody> +          </table> +        </td> +        <td bgcolor="#99ccff" class="bluebox"></td> +      </tr> +      <tr style="line-height: 0"> +        <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +        <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +          height="11" alt="" border="0"@@#]</td> +      </tr> +    </tbody> +  </table> +  <!-- ============ --> +</form> +<br /> +<form method="post" name="search" action="[#p#]"> +  [#P#]<input type="hidden" name="form" value="folder" /> +  <input type="hidden" name="pos" value="[#input:pos#]" /> + +  <!-- ===========  --> + +  <table cellpadding="0" cellspacing="0" border="0" width="100%"> +    <tbody> +      <tr style="line-height: 0"> +        <td align="left" valign="top">[#@bluetopleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" +        width="100%"></td> +        <td style="line-height: 0" align="right" +          valign="top">[#@bluetopright.png, width="11" height="11" alt="" +          border="0"@@#]</td> +      </tr> +      <tr> +        <td bgcolor="#99ccff" class="bluebox"></td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"> +          <table border="0" width="100%"> +            <tbody> +	      <tr> +                <td align="left" width="100%" valign="middle">Search this folder beginning with message #[#MSGPOS#]: <input type="text" name="searchtxt" width="20" /><input type="submit" name="do.search" value="Search" /></td> +	      </tr> +            </tbody> +          </table> +        </td> +        <td bgcolor="#99ccff" class="bluebox"></td> +      </tr> +      <tr style="line-height: 0"> +        <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +        <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +          height="11" alt="" border="0"@@#]</td> +      </tr> +    </tbody> +  </table> +  <!-- ============ --> +</form> + +</div> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/folders.html b/sqwebmail/html/en-us/folders.html new file mode 100644 index 0000000..3a0090a --- /dev/null +++ b/sqwebmail/html/en-us/folders.html @@ -0,0 +1,274 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +  <title>Folders[#d#]</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +</head> + +<body> +<!-- + +[#$UNREAD=(%u unread messages)#] +[#$INVALID=<p><span class="error">Invalid folder name</span></p><br />#] +[#$EXISTS=<p><span class="error">Folder already exists</span></p><br />#] +[#$DELETE=<p><span class="error">Unable to delete or rename this folder - folder contains messages or is used by a mail filter</span></p><br />#] +[#$DELETEPERMS=<p><span class="error">You do not have the permission to delete this folder</span></p><br />#] +[#$CREATEPERMS=<p><span class="error">You do not have the permission to create this folder</span></p><br />#] +[#$RENAME=<p><span class="error">You do not have the permission to rename this folder</span></p><br />#] +[#$WASSENT=<p><span class="sentmsg">Your message has been sent.</span></p><br />#] +[#$INBOX=INBOX#] +[#$DRAFTS=Drafts#] +[#$SENT=Sent#] +[#$TRASH=Trash#] +[#$FOLDERICON=@@folder.png, width="21" height="16" alt="Folder" title="Folder"@ @#] +[#$FOLDERSICON=@@folders.png, width="21" height="16" alt="Folders" title="Folders"@ @#] +[#$ACLICON=@@key.png, width="21" height="16" alt="Folders" title="Permissions" border="0"@Permissions@#] +[#$QUOTAUSAGE=<div align="center">You are using %d%% of your quota.</div>#] + +[#$CALENDAR=<div class="eventsummarytitle" align="center"><a href="%s">Your Calendar</a></div>#] + +[#$NOEVENTS=<em>No upcoming calendar events</em>#] +[#$CALENDARLOGINERR=The following error occured when trying to log in to the calendar server:#] +[#$CANCELLED=CANCELLED: #] +[#$BOOKED=PENDING: #] +[#$PUBLICFOLDERS=<em>Public Folders</em>#] +[#$NEWEVENT=New Event#] + +--> + +<div align="center"> +<!-- Top Header. Shows folder list and email address. --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Folders[#d#]</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] <!-- End of List of Sections. Folders, Create Messages, Etc. --> + <!-- Border around the folders list --> + <!-- List folders --> + + +<form method="post" action="[#p#]"> + +  <table width="95%" class="box-small-outer" border="0" cellspacing="1" +  cellpadding="1"> +    <tbody> +      <tr> +        <td> +          <table width="100%" class="folderlist" cellspacing="4" +          cellpadding="4" border="0"> +            <tbody> +              <tr> +                <td> +                  <div class="folderlist"> +                  <!-- [#?7#] Calendar link --> +                  [#EVENTSUMMARY#] +                  <hr width="100%" /> +                  <!-- [#?#] --> +                  [#QUOTA#] + +                  <table border="0" cellspacing="0" cellpadding="4" +                  width="100%" class="folderlist-header"> +                    <tbody> +                      <tr> +                        <td align="left">      +                        Folder</td> +                        <td align="right"># messages  </td> +                      </tr> +                    </tbody> +                  </table> +                  <!-- +                  End folder box titles +                  --> +                  <!-- + +                  Start folders + +                  --> +                  [#L#] <!-- + +                  End folders + +                  --> +                  </div> +                </td> +              </tr> +            </tbody> +          </table> +        </td> +      </tr> +    </tbody> +  </table> +  <br /> +  <!-- Put color around create/delete folders --> + + +  <table cellpadding="0" cellspacing="0" border="0" width="95%"> +    <tbody> +      <tr style="line-height: 0"> +        <td align="left" valign="top">[#@bluetopleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +        <td style="line-height: 0" align="right" +          valign="top">[#@bluetopright.png, width="11" height="11" alt="" +          border="0"@@#]</td> +      </tr> +      <tr> +        <td bgcolor="#99ccff" class="bluebox"></td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"> +          <table border="0" cellpadding="4" width="100%"> +            <tbody> +              <tr> +                <td align="left" width="100%" valign="middle"><!-- + +                  Do not remove the following code, which causes the folder rename/delete +                  HTML to be deleted, when browsing the shared folder hierarchy. + +                  [#?1#] + +                  --> + +                  <p>[#P#] <input type="hidden" name="form" value="folders" +                  /><input type="hidden" name="folder" value="INBOX" +                  />Rename to: [#E#] <input type="text" +                  size="16" name="renametoname" maxlength="128" />   +                  <input type="submit" value="Rename folder" name="do.rename" +                  /></p> + +                  <p> +                  <input type="submit" value="Delete folder" name="do.delete" +                  /> <label><input type="checkbox" name="deletecontent" +                  /> Delete folder contents</label></p> +                  <!-- + +                  [#?#] + +                  --> +                  <!-- + +                  And the following code gets used instead when we're in the shared hierarchy + +                  [#?2#] + +                  --> + +                  <p>[#P#]<input type="hidden" name="form" value="folders" +                  /><input type="hidden" name="folder" value="INBOX" />  +                  <input type="submit" value="Subscribe/Unsubscribe" +                  name="do.subunsub" +                  /> to the folder selected above.</p> +                  <!-- + +                  [#?#] + +                  --> +                  [#l#] <!-- + +                  End black border around folder box + +                  --> +                   <!-- + +                  Start create new folder form + +                  --> +                   <!-- + +                  Do not remove the following code, which causes the folder rename/delete +                  HTML to be deleted, when browsing the shared folder hierarchy. + +                  [#?1#] + +                  --> + + +                  <table border="0" cellspacing="0"> +                    <tbody> +                      <tr> +                        <td align="right">Create new folder: </td> +                        <td><input type="text" size="16" name="foldername" +                          maxlength="128" /></td> +                        <td> </td> +                        <td> +                          <input type="submit" value="Create" +                          name="do.create" />[#P#]<input type="hidden" +                          name="form" value="folders" /><input type="hidden" +                          name="folder" value="INBOX" /></td> +                      </tr> +                      <tr> +                        <td align="right">Create this folder<br /> +                          in new directory: </td> +                        <td colspan="3" align="left"><input type="text" +                          size="16" name="dirname" maxlength="128" /></td> +                      </tr> +                    </tbody> +                  </table> +                  <!-- End create new folder form --> +                  <!-- + +                  [#?#] + +                  --> +                </td> +              </tr> +            </tbody> +          </table> +        </td> +        <td bgcolor="#99ccff" class="bluebox"></td> +      </tr> +      <tr style="line-height: 0"> +        <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +        <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +          height="11" alt="" border="0"@@#]</td> +      </tr> +    </tbody> +  </table> +</form> +<!-- End of white body for folders list --> +<!-- End of Border around the folders list --> +<!-- End of extreme outside table --> +<!-- End of extreme outside table --> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/gpg.html b/sqwebmail/html/en-us/gpg.html new file mode 100644 index 0000000..0fdbc42 --- /dev/null +++ b/sqwebmail/html/en-us/gpg.html @@ -0,0 +1,230 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>GnuPG Encryption Settings</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$DELETEFAIL=<p class="error">Error trying to delete the encryption key, GnuPG messages follow:</p>#] +[#$SIGNFAIL=<p class="error">Error trying to sign the encryption key, GnuPG messages follow:</p>#] + +[#$DISABLED=Warning: this key is disabled#] +[#$REVOKED=Warning: this key is revoked#] +[#$EXPIRED=Warning: this key is expired#] + +--> + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">GnuPG Encryption Settings</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] [#DOGPG#] + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr bgcolor="#99ccff" class="bluebox"> +      <td> </td> +      <td valign="middle"> +        <form method="post" action="[#p#]"> +          [#P#] <input type="hidden" name="form" value="gpg" /> + +          <div align="center" class="gpgpublickeytitle"> +          Public Keys</div> +          <br /> +          [#LISTPUB#] + +          <p>      +          <input type="submit" value="Delete Public Key" name="delpub" /></p> +          <hr width="90%" /> + +          <div align="center" class="gpgprivatekeytitle"> +          Private Keys</div> +          <br /> +          [#LISTSEC#] + +          <p>      +          <input type="submit" value="Delete Private Key" name="delsec" +          /><input type="checkbox" name="really" />Yes, I really want to do +          this</p> +          <hr size="1" noshade="noshade" width="100%" /> + +          <p align="center" class="gpgsignkeytitle">Sign Public Key</p> +          <!-- [#?6#] --> + +          <p>  Private key's passphrase: <input type="password" +          size="20" name="passphrase" /></p> +          <!-- [#?#] --> + +          <p>  Choose a public and a private key, above, then  +          <input type="submit" value="sign" name="sign" /></p> + +          <table width="90%" border="0" align="center"> +            <tbody> +              <tr> +                <td>How carefully have you verified the key you are about to +                  sign actually belongs to the person named above?  +                  <select name="signlevel"> +                    <option value="0">I don't know (default) </option> +                    <option value="1">I haven't checked </option> +                    <option value="2">I have done casual checking </option> +                    <option value="3">I have done very careful +                    checking</option> +                  </select> +                </td> +              </tr> +            </tbody> +          </table> +          <hr size="1" noshade="noshade" width="100%" /> + +          <p align="center" class="gpgdefaulttitle">Default Private Key</p> + +          <p>  Select a default private key for signing, above, +          then  +          <input type="submit" value="set it as the default" +          name="setdefault" /></p> +        </form> +        <hr size="1" noshade="noshade" width="100%" /> + +        <form method="post" action="[#p#]"> +          [#P#] <input type="hidden" name="form" value="gpgcreate" /> + +          <p align="center" class="gpgcreatetitle">Create New Keypair</p> + +          <table border="0" cellpadding="8"> +            <tbody> +              <tr> +                <td align="right">Name:</td> +                <td><input type="text" size="20" name="newname" /></td> +              </tr> +              <tr> +                <td align="right">E-mail address:</td> +                <td><input type="text" size="20" name="newaddress" /></td> +              </tr> +              <tr> +                <td align="right">Comment:</td> +                <td><input type="text" size="20" name="newcomment" /></td> +              </tr> +              <tr> +                <td +                align="right">Signature (DSA) key length:</td> +                <td> +                  <select name="skeylength"> +                    <option value="512">512 bits</option> +                    <option value="768">768 bits</option> +                    <option value="1024" selected="selected">1024 +                    bits</option> +                  </select> +                </td> +              </tr> +              <tr> +                <td +                  align="right">Encryption (ElGamal) key length:</td> +                <td> +                  <select name="ekeylength"> +                    <option value="512">512 bits</option> +                    <option value="768">768 bits</option> +                    <option value="1024" selected="selected">1024 +                    bits</option> +                    <option value="2048">2048 bits</option> +                  </select> +                </td> +              </tr> +              <tr> +                <td align="right">Expiration:</td> +                <td><input type="text" size="4" name="newexpire" />  +                  <select name="newexpirewhen"> +                    <option value="" selected="selected">-- no expiration-- +                    </option> +                    <option value="d">days </option> +                    <option value="w">weeks </option> +                    <option value="m">months </option> +                    <option value="y">years</option> +                  </select> +                </td> +              </tr> +              <!-- [#?6#] --> +              <tr> +                <td align="right">Passphrase (optional):</td> +                <td><input type="password" size="20" name="passphrase" /></td> +              </tr> +              <tr> +                <td align="right">Reenter passphrase:</td> +                <td><input type="password" size="20" name="passphrase2" +                /></td> +              </tr> +              <!-- [#?#] --> +              <tr> +                <td> </td> +                <td> +                  <input type="submit" value="Create" name="submit" /></td> +              </tr> +            </tbody> +          </table> +        </form> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/gpgcreate.html b/sqwebmail/html/en-us/gpgcreate.html new file mode 100644 index 0000000..f871fc2 --- /dev/null +++ b/sqwebmail/html/en-us/gpgcreate.html @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Creating Encryption key</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$BADARGS=<span style="color: #e00000" class="error">Invalid arguments - please specify a name, and a valid E-mail address.  Most punctuation characters are prohibited.</span>#] +[#$PASSPHRASEFAIL=<p class="error">Error - invalid characters in passphrase, or identical passphrase was not entered twice.</p>#] + +--> +   + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Creating Encryption Key</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>Please wait, this may take at least 5-10 minutes.  Please ignore any +messages, until key generation is complete.</p> +<hr /> +[#GPGCREATE#] +<hr /> + +<p><a href="[#s#]&form=gpg">Key generation completed, continue</a></p> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/gpgerr.html b/sqwebmail/html/en-us/gpgerr.html new file mode 100644 index 0000000..81924b2 --- /dev/null +++ b/sqwebmail/html/en-us/gpgerr.html @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>GnuPG Error</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +--> +   + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">GnuPG Error</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#]</div> + +<p>The following error has occured while encrypting or signing this +message:</p> + +<div style="margin-left: 3.5em;"> +<pre class="error">[#GPGERR#]</pre> +</div> + +<p><a href="[#GPGERRRESUME#]">Continue</a></p> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/index.html b/sqwebmail/html/en-us/index.html new file mode 100644 index 0000000..d43112d --- /dev/null +++ b/sqwebmail/html/en-us/index.html @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>SqWebMail - Copyright 1999-2011 Double Precision, Inc.</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<frameset rows="0,*" border="0"> +  <frame src="[#s#]empty=1" scrolling="no" noresize="noresize" +  frameborder="0" /> +  <frame src="[#s#]noframes=1" noresize="noresize" frameborder="0" /> +  <noframes> +    <body> +    <h1>SqWebMail - Copyright 1999-2011 Double Precision, Inc.</h1> + +    <p>Your web browser does not support frames. Although SqWebMail uses +    frames, 100% of functionality is available to web browsers that do not +    support frames.</p> + +    <p><a href="[#s#]noframes=1">Enter without frame support.</a></p> +    </body> +  </noframes> +</frameset> +</html> diff --git a/sqwebmail/html/en-us/invalid.html b/sqwebmail/html/en-us/invalid.html new file mode 100644 index 0000000..8509a44 --- /dev/null +++ b/sqwebmail/html/en-us/invalid.html @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Sqwebmail. Invalid Login.</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.8.1, see http://www.w3.org/Amaya/" +  /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body onload="init();"> +<script type="text/javascript" language="Javascript"> +<!-- + +function init() +{ +document.logon.username.focus(); +} +//--> + + +  </script> +[#include:loginform#] + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0" width="400"> +  <tbody> +    <tr> +      <td align="center"><h2 class="error">INVALID USER ID OR PASSWORD</h2> + +        <p>Please try again.</p> +      </td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/keyimport.html b/sqwebmail/html/en-us/keyimport.html new file mode 100644 index 0000000..dfc147f --- /dev/null +++ b/sqwebmail/html/en-us/keyimport.html @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Import key</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$KEYIMPORT=Continue#] + +[#$IMPORTHDR=<p align="center" class="message-gpg-importing">Importing key(s)</p><hr width="90%" />#] + +--> + +<div align="center"> +   + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Import key</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#]</div> +<!-- The next HR really makes things look nice for the lynx folks --> +<hr size="1" noshade="noshade" width="100%" /> +[#KEYIMPORT#] + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/ldaplist.html b/sqwebmail/html/en-us/ldaplist.html new file mode 100644 index 0000000..158cf34 --- /dev/null +++ b/sqwebmail/html/en-us/ldaplist.html @@ -0,0 +1,165 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Global Address Book Search</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.8.1, see http://www.w3.org/Amaya/" +  /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$DELABOOK=Delete address book#] +[#$SYSBOOK=<font size="-1" class="ldaplist-ldapurl"> (system)</font>#] + +--> + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Global Address Book Search</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<form method="post" action="[#R#]"> +  [#P#]<input type="hidden" name="form" value="ldaplist" /> + +  <table cellpadding="0" cellspacing="0" border="0" width="95%"> +    <tbody> +      <tr style="line-height: 0"> +        <td align="left" valign="top">[#@bluetopleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" +        width="100%"></td> +        <td style="line-height: 0" align="right" +          valign="top">[#@bluetopright.png, width="11" height="11" alt="" +          border="0"@@#]</td> +      </tr> +      <tr> +        <td bgcolor="#99ccff" class="bluebox"></td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"> +          <table border="0" cellpadding="4" cellspacing="0" width="100%" +          class="ldaplist"> +            <tbody> +              <tr> +                <td align="center"><font size="+3" +                  class="ldaplist-title">Search</font></td> +              </tr> +              <tr> +                <td>[#o#]</td> +              </tr> +              <tr> +                <td><hr width="90%" /> +                </td> +              </tr> +              <tr> +                <td> +                  <table border="0" align="center"> +                    <tbody> +                      <tr> +                        <td>Search for: <input type="text" size="20" +                          name="value" />   +                          <input type="submit" value="Search" +                          name="ldapsearch" /></td> +                      </tr> +                    </tbody> +                  </table> +                </td> +              </tr> +              <tr> +                <td><hr width="90%" /> +                </td> +              </tr> +              <tr> +                <td align="center"><font size="+3" +                  class="ldaplist-add-title">Add Address Book</font></td> +              </tr> +              <tr> +                <td align="center"> +                  <table border="0" class="ldaplist-add-fields"> +                    <tbody> +                      <tr> +                        <td align="right"><strong>Name:</strong></td> +                        <td><input type="text" size="20" name="name" /></td> +                        <td></td> +                        <td></td> +                      </tr> +                      <tr> +                        <td align="right">Host:</td> +                        <td><input type="text" size="20" name="host" /></td> +                        <td align="right">Port:</td> +                        <td><input type="text" size="8" name="port" /></td> +                      </tr> +                      <tr> +                        <td align="right">Root Suffix:</td> +                        <td><input type="text" size="20" name="suffix" /></td> +                        <td></td> +                        <td></td> +                      </tr> +                      <tr> +                        <td colspan="4" align="center"><input type="hidden" +                          name="addabook" value="1" />  +                          <input type="submit" value="Add" name="go" /></td> +                      </tr> +                    </tbody> +                  </table> +                </td> +              </tr> +            </tbody> +          </table> +        </td> +        <td bgcolor="#99ccff" class="bluebox"></td> +      </tr> +      <tr style="line-height: 0"> +        <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +        <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +          height="11" alt="" border="0"@@#]</td> +      </tr> +    </tbody> +  </table> +</form> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/ldapsearch.html b/sqwebmail/html/en-us/ldapsearch.html new file mode 100644 index 0000000..d5dafe1 --- /dev/null +++ b/sqwebmail/html/en-us/ldapsearch.html @@ -0,0 +1,121 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Search Results</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$ADD=Add to existing nickname:#] +[#$CREATE=Create new nickname:#] +[#$SUBMIT=Submit#] + +[#$NOTFOUND=<p class="error">ERROR: No matching address found</p>#] + +--> + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Search Results</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<form method="post" action="[#R#]"> +  [#P#]<input type="hidden" name="form" value="abooklist" /> + +  <table cellpadding="0" cellspacing="0" border="0" width="95%"> +    <tbody> +      <tr style="line-height: 0"> +        <td align="left" valign="top">[#@bluetopleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +        <td style="line-height: 0" align="right" +          valign="top">[#@bluetopright.png, width="11" height="11" alt="" +          border="0"@@#]</td> +      </tr> +      <tr> +        <td bgcolor="#99ccff" class="bluebox"></td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"> +          <table border="0" cellpadding="4" cellspacing="0" width="100%" +          class="ldapsearch"> +            <tbody> +              <tr> +                <td align="center"><font +                size="+3">Search Results</font></td> +              </tr> +              <tr> +                <td><hr width="90%" /> +                </td> +              </tr> +              <tr> +                <td align="left">[#O#]</td> +              </tr> +              <tr> +                <td><hr width="90%" /> +                </td> +              </tr> +              <tr> +                <td align="center"><a +                  href="[#s#]&form=ldaplist">Search Again</a></td> +              </tr> +            </tbody> +          </table> +        </td> +        <td bgcolor="#99ccff" class="bluebox"></td> +      </tr> +      <tr style="line-height: 0"> +        <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +        <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +          height="11" alt="" border="0"@@#]</td> +      </tr> +    </tbody> +  </table> +</form> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/login.html b/sqwebmail/html/en-us/login.html new file mode 100644 index 0000000..1090cc0 --- /dev/null +++ b/sqwebmail/html/en-us/login.html @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Sqwebmail Login.</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.8.1, see http://www.w3.org/Amaya/" +  /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body onload="init();"> +<script type="text/javascript" language="Javascript"> +<!-- + +function init() +{ +document.logon.username.focus(); +} +//--> +</script> +[#include:loginform#] + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/loginform.inc.html b/sqwebmail/html/en-us/loginform.inc.html new file mode 100644 index 0000000..0b623f8 --- /dev/null +++ b/sqwebmail/html/en-us/loginform.inc.html @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> +  <title></title> +  <meta name="GENERATOR" content="amaya 8.8.1, see http://www.w3.org/Amaya/" +  /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- Do not alter the following comment --> +<!-- [#begininclude#] --> + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@graytopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top">[#@graytopright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td></td> +      <!-- This is where you put all the content for the login --> +      <td><!-- Insert Logo for site branding --> +        [#@logo.png, width="263" height="35" alt="SqWebMail Copyright +        1999-2010 Double Precision, Inc." +        border="0"@SqWebMail - Copyright 1999-2010 Double Precision, Inc.@#] +        <br /> +        [#@signin.png, width="102" height="39" alt="Enter your USERID and +        PASSWORD, below" border="0"@@#]<br /> + + +        <form method="post" name="logon" action="[#S#]"> + +          <table border="0"> +            <tbody> +              <tr> +                <td>User Id: </td> +                <td><input type="text" size="16" name="username" +                  maxlength="128" /></td> +                <td>[#h#] </td> +              </tr> +              <tr> +                <td>Password: </td> +                <td><input type="password" size="16" name="password" +                  maxlength="128" /></td> +                <td> +                  <input type="submit" value="Login" name="do.login" /></td> +              </tr> +              <tr> +                <td>Timezone: </td> +                <td colspan="2">[#timezonelist#]</td> +              </tr> +              <tr> +                <td align="right" valign="top"><input type="checkbox" +                  checked="checked" name="sameip" id="sameip" /></td> +                <td colspan="2"><label for="sameip">Restrict access to your +                  IP address<br /> +                  only (increased security)</label></td> +              </tr> +              <tr> +                <td align="right" valign="top"><input type="checkbox" +                  name="inpublic" id="inpublic" /></td> +                <td colspan="2"><label for="inpublic">Accessing from a public +                  machine (enables<br /> +                  short idle timeout)</label></td> +              </tr> +            </tbody> +          </table> +        </form> +      </td> +      <!-- This is the end of the content for the login --> +      <td></td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> +[#endinclude#] <!-- do not alter the previous tag --> +</body> +</html> diff --git a/sqwebmail/html/en-us/navbar.inc.html b/sqwebmail/html/en-us/navbar.inc.html new file mode 100644 index 0000000..aaa6d31 --- /dev/null +++ b/sqwebmail/html/en-us/navbar.inc.html @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title></title> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- Do not alter the following comment --> +<!-- [#begininclude#] --> + +<table width="95%" border="0"> +  <tbody> +    <tr> +      <td valign="middle" align="center"><a +        href="[#s#]&form=folders">Folders</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&newmsg=1&form=newmsg">Create Message</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&form=preferences">Preferences</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&form=abooklist">Address Book</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <!-- [#?4#] --> +      <td valign="middle" align="center"><a +        href="[#s#]&form=filter&import=1">Edit Mail Filters</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&form=autoresponder">Edit Autoreplies</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <!-- [#?#] --> +      <!-- [#?5#] --> +      <td valign="middle" align="center"><a +        href="[#s#]&form=gpg">Encryption</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <!-- [#?#] --> +      <td valign="middle" align="center"><a href="[#s#]&form=logout" +        target="_top">Log Out</a></td> +    </tr> +  </tbody> +</table> +[#endinclude#] <!-- do not alter the previous tag --> +</body> +</html> diff --git a/sqwebmail/html/en-us/navbar2.inc.html b/sqwebmail/html/en-us/navbar2.inc.html new file mode 100644 index 0000000..4cbc05f --- /dev/null +++ b/sqwebmail/html/en-us/navbar2.inc.html @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title></title> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- Do not alter the following comment --> +<!-- [#begininclude#] --> + +<table width="95%" border="0"> +  <tbody> +    <tr> +      <td valign="middle" align="center"><a +        href="[#s#]&form=folders&folderdir=[#D#]">Folders</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&newmsg=1&form=newmsg">Create Message</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&form=preferences">Preferences</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&form=abooklist">Address Book</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <!-- [#?4#] --> +      <td valign="middle" align="center"><a +        href="[#s#]&form=filter&import=1">Edit Mail Filters</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&form=autoresponder">Edit Autoreplies</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <!-- [#?#] --> +      <!-- [#?5#] --> +      <td valign="middle" align="center"><a +        href="[#s#]&form=gpg">Encryption</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <!-- [#?#] --> +      <td valign="middle" align="center"><a href="[#s#]&form=logout" +        target="_top">Log Out</a></td> +    </tr> +  </tbody> +</table> +[#endinclude#] <!-- do not alter the previous tag --> +</body> +</html> diff --git a/sqwebmail/html/en-us/navbar3.inc.html b/sqwebmail/html/en-us/navbar3.inc.html new file mode 100644 index 0000000..56c6ebb --- /dev/null +++ b/sqwebmail/html/en-us/navbar3.inc.html @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title></title> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- Do not alter the following comment --> +<!-- [#begininclude#] --> + +<table width="95%" border="0"> +  <tbody> +    <tr> +      <td valign="middle" align="center"><a +        href="[#s#]&form=folders&fromscreen=mailfilter">Folders</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&newmsg=1&form=newmsg&fromscreen=mailfilter">Create Message</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&form=preferences&fromscreen=mailfilter">Preferences</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&form=abooklist&fromscreen=mailfilter">Address Book</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <!-- [#?4#] --> +      <td valign="middle" align="center"><a +        href="[#s#]&form=filter&import=1">Edit Mail Filters</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <td valign="middle" align="center"><a +        href="[#s#]&form=autoresponder&fromscreen=mailfilter">Edit Autoreplies</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <!-- [#?#] --> +      <!-- [#?5#] --> +      <td valign="middle" align="center"><a +        href="[#s#]&form=gpg&fromscreen=mailfilter">Encryption</a></td> +      <td valign="middle" align="center">[#@sep.png,alt="|"@|@#]</td> +      <!-- [#?#] --> +      <td valign="middle" align="center"><a +        href="[#s#]&form=logout&fromscreen=mailfilter" +        target="_top">Log Out</a></td> +    </tr> +  </tbody> +</table> +[#endinclude#] <!-- do not alter the previous tag --> +</body> +</html> diff --git a/sqwebmail/html/en-us/newevent.html b/sqwebmail/html/en-us/newevent.html new file mode 100644 index 0000000..0a82190 --- /dev/null +++ b/sqwebmail/html/en-us/newevent.html @@ -0,0 +1,331 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Calendar Event</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- +[#$NOATTACH=No attachments...#] + +[#$QUOTAERR=<font style="color: #ff0000" size="+1" class="error">ERROR: You have exceeded your quota</font><br /><br />#] +[#$TIMEERR=<font style="color: #ff0000" size="+1" class="error">ERROR: Invalid date/time entered</font><br /><br />#] +[#$NOTIMEERR=<font style="color: #ff0000" size="+1" class="error">ERROR: Enter event starting/ending time, below:</font><br /><br />#] + +[#$CONFLICTERR=<font style="color: #ff0000" size="+1" class="error">ERROR: Scheduling conflict</font><br /><br />#] + +[#$CONFLICTERR2=SCHEDULING CONFLICT: #] + +[#$CALENDARERR=<font style="color: #ff0000" size="+1" class="error">ERROR: The following error has occured when saving this event: <div style="margin-left: 3.5em;"><pre>%s</pre></div>If the calendar server is down, save/postpone this event, and try logging in again from the main menu.</font><br /><br />#] + +[#$LOCKERR=<font style="color: #ff0000" size="+1" class="error">ERROR: An error has occured trying to lock the calendar for update.  Please try again.</font><br /><br />#] + +[#$NOTFOUNDERR=<font style="color: #ff0000" size="+1" class="error">ERROR: The original event was not found.  This can happen if this event was updated or modified by someone else.  Save this event info, and check your calendar for updates to this event.</font><br /><br />#] + +[#$EVENTLOCKEDERR=<font style="color: #ff0000" size="+1" class="error">ERROR: This event is currently locked by another calendar update.  Please try again later.</font><br /><br />#] + +[#$CANCELLED=<span style="color: #ff0000">(CANCELLED) </span>#] +[#$BOOKED=<span style="color: #ff0000">(LOCKED) </span>#] + +[#$REMOVE=Remove#] + +[#$RECURRING=<select name="recurring"><option value="0">Weekly</option><option value="1">Monthly</option><option value="2">Annual</option></select> event end date:#] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Calendar Event</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr bgcolor="#99ccff" class="bluebox"> +      <td></td> +      <td valign="middle" width="100%"> +        <table width="100%" border="0" cellpadding="8"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle">[#NEWEVENT#] + +                <form method="post" action="[#p#]"> +                  [#P#]<input type="hidden" name="form" value="newevent" +                  /><input type="hidden" name="today" value="today" /><input +                  type="hidden" name="tomorrow" value="tomorrow" /><input +                  type="hidden" name="draftmessage" +                  value="[#input:draftmessage#]" /> + +                  <table border="0"> +                    <tbody> +                      <tr> +                        <th align="right">New event time:</th> +                        <td><input type="text" size="20" name="starttime" +                        /></td> +                      </tr> +                      <tr> +                        <td> </td> +                        <td> +                          <table border="0"> +                            <tbody> +                              <tr valign="top"> +                                <td>Examples:</td> +                                <td><span class="tt">today 11am<br /> +                                  tomorrow 2:15pm<br /> +                                  friday 9am<br /> +                                  Aug 3 2001 1:30pm<br /> +                                  8/3/2001 4pm<br /> +                                  2001.08.03 4pm</span></td> +                              </tr> +                            </tbody> +                          </table> +                        </td> +                      </tr> +                      <tr> +                        <th align="right">[#RECURRING#]</th> +                        <td width="100%"><input type="text" size="10" +                          maxlength="10" name="endtime" /><span +                          class="tt"> MM/DD/YYYY</span></td> +                      </tr> +                      <tr> +                        <td> </td> +                        <td>(For a recurring event only - enter ending +                        date)</td> +                      </tr> +                      <tr> +                        <td colspan="2"> </td> +                      </tr> +                      <tr> +                        <th align="right">Event duration:</th> +                        <td><input type="text" size="2" maxlength="2" +                          name="hours" value="1" /><span +                          class="tt">hr </span><input type="text" +                          size="2" maxlength="2" name="mins" value="0" +                          /><span class="tt">min </span>  +                          <input type="submit" value="Add event time(s)" +                          name="do.neweventtime" />  <!-- [#?8#]--> +                        </td> +                      </tr> +                      <tr> +                        <td colspan="2"> </td> +                      </tr> +                      <tr> +                        <th +                        align="right">Add event participant:</th> +                        <td><input type="text" size="20" name="participant1" +                          /> <font size="-1">(enter E-mail +                          address)</font>, or:</td> +                      </tr> +                      <tr> +                        <td> </td> +                        <td>[#ABOOKNAMELIST#]</td> +                      </tr> +                      <tr> +                        <td> </td> +                        <td> +                          <input type="submit" value="Add participant" +                          name="do.addparticipant" />  <!-- [#?#]--> +                        </td> +                      </tr> +                    </tbody> +                  </table> +                </form> +              </td> +            </tr> +          </tbody> +        </table> +        <hr width="80%" /> +        [#EVENTSTART#] + +        <form method="post" action="[#p#]" enctype="multipart/form-data"> +          [#P#]<input type="hidden" name="form" value="newevent" /><input +          type="hidden" name="draftmessage" value="[#input:draftmessage#]" /> + +          <table width="100%" border="0" cellpadding="8"> +            <tbody> +              <tr valign="top"> +                <th align="right">Event time(s): </th> +                <td width="100%">[#EVENTTIMES#]</td> +              </tr> +              <tr> +                <th align="right">From: </th> +                <td>[#EVENTFROM#]<!-- [#?8#]--> +                </td> +              </tr> +              <tr valign="top"> +                <th align="right">Event participant(s): </th> +                <td width="100%">[#EVENTPARTICIPANTS#]<!-- [#?#]--> +                </td> +              </tr> +              <tr> +                <th align="right">Subject: </th> +                <td><input type="text" size="60" name="headersubject" +                  value="[#input:headersubject#]" /></td> +              </tr> +              <tr> +                <th valign="top" align="right">Contents: </th> +                <td>[#EVENTTEXT#] +                  <hr width="80%" /> + +                  <table width="100%" bgcolor="#000080" border="0" +                  cellpadding="4" cellspacing="0" class="attachments-header"> +                    <tbody> +                      <tr> +                        <th align="left"><span style="color: #ffff00" +                          class="attachments-header">    Event +                          attachments:</span></th> +                        <th align="right"><span style="color: #ffff00" +                          class="attachments-header">Size</span></th> +                      </tr> +                    </tbody> +                  </table> +                  [#EVENTATTACH#]  +                  <input type="submit" value=" Delete attachment " +                  name="do.neweventdeleteattach" /> + +                  <table border="0"> +                    <tbody> +                      <tr valign="middle"> +                        <td align="right">Upload: <input type="file" +                          size="20" name="uploadfile" /></td> +                        <td> +                          <input type="submit" value="Upload" +                          name="do.neweventupload" /></td> +                        <td><label><input type="checkbox" +                          name="attach_inline" />Display attachment +                          inline</label> <!-- [#?5#]--> +                        </td> +                      </tr> +                      <tr> +                        <td align="right"> +                          <select name="pubkey"> +                            <option selected="selected"></option>[#ATTACHPUB#] +                          </select> +                        </td> +                        <td colspan="2"> +                          <input type="submit" value="Attach public key" +                          name="do.neweventuppubkey" /></td> +                      </tr> +                      <tr valign="top"> +                        <td align="right"> +                          <select name="privkey"> +                            <option selected="selected"></option>[#ATTACHSEC#] +                          </select> +                        </td> +                        <td colspan="2"> +                          <input type="submit" value="Attach private key" +                          name="do.neweventupprivkey" /><br /> +                          <input type="checkbox" name="really" +                          /> Yes, I really want to do this <!-- [#?#]--> +                        </td> +                      </tr> +                    </tbody> +                  </table> +                </td> +              </tr> +              <tr> +                <td> </td> +                <td> +                  <table border="0"> +                    <tbody> +                      <tr> +                        <td> +                          <input type="submit" value="Preview" +                          name="do.neweventpreview" /></td> +                        <td> +                          <input type="submit" value="Save/Postpone" +                          name="do.neweventpostpone" /></td> +                        <td> +                          <input type="submit" value="Add to calendar" +                          name="do.neweventsave" /></td> +                      </tr> +                    </tbody> +                  </table> +                </td> +              </tr> +              <tr> +                <td> </td> +                <td><label><input type="checkbox" name="okconflict" +                  />Ignore scheduling conflicts</label> +                  <!-- [#?8#]--> +                </td> +              </tr> +              <tr> +                <td> </td> +                <td><label><input type="checkbox" name="okerrors" />Ignore +                  errors updating other participants' calendars<br /> +                  <span class="tt">    </span><font +                  size="-2">(and remove those participants from the +                  event)</font></label> +                  <!-- [#?#]--> +                </td> +              </tr> +            </tbody> +          </table> +        </form> +      </td> +      <td></td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +[#EVENTEND#]</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/newmsg.html b/sqwebmail/html/en-us/newmsg.html new file mode 100644 index 0000000..75c99c7 --- /dev/null +++ b/sqwebmail/html/en-us/newmsg.html @@ -0,0 +1,160 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Create Message</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.8.1, see http://www.w3.org/Amaya/" +  /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body onload="init();"> +<!-- + +[#$DSPFMT_DATE=%d %b %Y, %I:%M:%S %p#] + +[#$TOLAB=To:#] +[#$CCLAB=Cc:#] +[#$BCCLAB=Bcc:#] +[#$SUBJECTLAB=Subject:#] +[#$MESSAGELAB=Message:#] +[#$SENDLAB=Send#] +[#$PREVIEWLAB=Preview#] +[#$FORWARDLAB=---------- Forwarded message ----------#] +[#$SAVEDRAFT=Save Draft#] +[#$ATTACHMENTS=Attachments:#] +[#$UPLOAD=Add/Remove#] +[#$SALUTATION=%F writes:#] +[#$SPELLCHECKDONE=<strong class="spellcheckdone">Spell check completed</strong>#] +[#$CHECKSPELLING=Check spelling#] +[#$QUOTAERR=<font style="color: #ff0000" size="+1" class="error">ERROR: You have exceeded your quota</font>#] +[#$FROMLAB=From:#] +[#$REPLYTOLAB=Reply-To:#] +[#$ADDRESSBOOK=Address Book:#] + +[#$PRESERVELAB=Preserve a copy of the message in the Sent folder#] +[#$SIGNLAB=Sign message with: #] +[#$ENCRYPTLAB=Encrypt message to: #] +[#$PASSPHRASE=Passphrase (if required): #] +[#$DSN=Request delivery confirmation receipt#] + +[#$ATTACHMENT=Attachment: %s#] + +[#$DISPATT=<span class="message-attachment-link">Display</span>#] +[#$DOWNATT=<span class="message-attachment-link">Download</span>#] + +[#$KEY=<table border="0" bgcolor="#000000" cellpadding="1"><tr><td><table border="0" cellspacing="0" cellpadding="8" bgcolor="#eeeeee"><tr><td>Encryption key</td></tr></table></td></tr></table>#] + +[#$FMTNAME=Format text as:#] +[#$FMTTEXTPLAIN=plain text format#] +[#$FMTTEXTWIKI=plain text + inferred HTML#] +[#$FMTHELP=help#] + +[#$SELECT1=<select name="nick" size="4" multiple="multiple" class="nicklist">#] +[#$SELECT2=</select>#] + +[#$TEXT1=<textarea name="message" cols="76" rows="15" wrap="soft" class="new-message-message-text">#] +[#$TEXT2=</textarea><br />#] + +[#$HDRMAXLEN=512#] +--> +<script type="text/javascript" language="Javascript"> +<!-- + +function init() +{ +if (document.msg.focusto.value == "headers") +{ +document.msg.headerto.focus(); +} +} +//--> + + + +  </script> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Create Message[#d#]</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr> +      <td bgcolor="#99ccff" class="bluebox"></td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"> +        <table width="100%" border="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle"> +                <form method="post" name="msg" action="[#p#]"> +                  [#P#][#W#]</form> +              </td> +            </tr> +          </tbody> +        </table> +      </td> +      <td bgcolor="#99ccff" class="bluebox"></td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/preferences.html b/sqwebmail/html/en-us/preferences.html new file mode 100644 index 0000000..bc67a73 --- /dev/null +++ b/sqwebmail/html/en-us/preferences.html @@ -0,0 +1,317 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Preferences</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$PWDERR=<p class="error">ERROR: Unable to change password.  Possible reasons why you cannot change the password are:</p><ul class="error"><li>You did not enter the old password correctly</li><li>You did not enter the new password twice correctly</li><li>Your new password is too short, or is based on a dictionary word, and short/dictionary-based passwords are not allowed</li><li>Your new password contains forbidden characters</li></ul>#] +[#$PWDOK=<p class="success">Your password was changed successfully!</p>#] +[#$PREFSOK=<p class="success">Your preferences were updated successfully!</p>#] +[#$DATE=Date#] +[#$SENDER=Sender#] +[#$SUBJECT=Subject#] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Preferences</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0" width="75%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +      <td style="line-height: 0" align="right" +        valign="top">[#@bluetopright.png, width="11" height="11" alt="" +        border="0"@@#]</td> +    </tr> +    <tr> +      <td bgcolor="#99ccff" class="bluebox"></td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"><!-- here --> + +        <form method="post" name="preferences" action="[#R#]"> +          [#P#]<input type="hidden" name="form" value="preferences" />[#x#] + +          <table border="0" cellspacing="0" cellpadding="4" bgcolor="#99ccff" class="bluebox" +          width="100%"> +            <tbody> +              <tr> +                <td><!-- + +                  Start of preferences box +                  --> + +                  <table border="0" cellspacing="8" cellpadding="4" +                  width="100%"> +                    <tbody> +                      <tr> +                        <td>[#z#]</td> +                        <td width="100%"><label for="fullheaders">Display +                          full message headers</label></td> +                      </tr> +                      <tr> +                        <td>[#H#]</td> +                        <td><label for="doshowhtml">Display HTML +                          E-Mail</label></td> +                      </tr> +                      <tr> +                        <td>[#FLOWEDTEXT#]</td> +                        <td><label for="noflowedtext">Do not display flowed +                          text formatted mail.</label></td> +                      </tr> +                      <tr> +                        <td>[#NOARCHIVE#]</td> +                        <td><label for="noarchive">Do not archive sent +                          messages in the Sent folder.</label></td> +                      </tr> +                      <tr> +                        <td>[#NOAUTORENAMESENT#]</td> +                        <td><label for="noautorenamesent">Do not rename +                          the Sent folder every month.</label></td> +                      </tr> +                      <tr> +                        <td></td> +                        <td>Automatically purge deleted messages after [#v#] +                          days.<br /> +                          (Set zero to disable autopurge.)</td> +                      </tr> +                    </tbody> +                  </table> +                  <hr width="90%" /> + +                  <table border="0" cellspacing="8" cellpadding="4"> +                    <tbody> +                      <!-- [#?7#] Calendar  + +                      <td></td> +                      <td></td> +                      <td></td> + +                      <td></td> +                      <td></td> +                      <td></td> + +                      <td></td> +                      <td></td> +                      <td></td> +                      --> +                       <tr> +                        <td></td> +                        <td>Calendar week begins on:</td> +                        <td>[#PREFWEEK#]</td> +                        <td width="100%"></td> +                      </tr> +                      <!-- [#?#] --> +                      <tr> +                        <td></td> +                        <td>Sort messages by:</td> +                        <td>[#w#]</td> +                        <td width="100%"></td> +                      </tr> +                      <tr> +                        <td></td> +                        <td>Messages per page:</td> +                        <td>[#u#]</td> +                        <td width="100%"></td> +                      </tr> +                      <tr> +                        <td>[#y#]</td> +                        <td colspan="2"><label for="oldest1st">Show oldest +                          messages first.</label></td> +                        <td width="100%"></td> +                      </tr> +                      <tr> +                        <td></td> +                        <td colspan="2"><br /> +                          <br /> +                          Your signature: + +			   <p><textarea style="font-family: courier;"  +				cols="40" rows="4" name="signature"  +				wrap="off">[#t#]</textarea> +			   </p> +                        </td> +                        <td width="100%"></td> +                      </tr> +                      <tr> +                        <td> </td> +                        <td colspan="2"><br /> +                          <br /> + + +                          <div align="center"> +                          Mailing Lists</div> + +                          <p>Enter the addresses of mailing lists you are +			  subscribed to (one per line): <textarea  +			      style="font-family: courier;" cols="40"  +			      rows="4" name="mailinglists"  +			      wrap="soft">[#MAILINGLISTS#]</textarea> +			  </p> +                        </td> +                        <td width="100%"></td> +                      </tr> +                    </tbody> +                  </table> + +                  <div align="center"> + +                  <table border="0" cellspacing="0" cellpadding="4"> +                    <tbody> +                      <tr> +                        <td> +                          <input type="submit" +                          value="Update preferences" +                          name="do.changeprefs" /></td> +                      </tr> +                    </tbody> +                  </table> +                  </div> +                  <!-- + +                  Do not remove the following code, which causes password entry to be +                  omitted if configured with enable-webpass=no + +                  [#?0#] + +                  --> +                  <hr width="90%" /> +                  <br /> + + +                  <table width="100%" border="0"> +                    <tbody> +                      <tr> +                        <td>    </td> +                        <td> +                          <table border="0"> +                            <tbody> +                              <tr> +                                <td colspan="2" align="center"><font +                                  size="+1">Change Mail Password</font> <br /> +                                  <br /> +                                </td> +                              </tr> +                              <tr> +                                <td align="right">Old Password:</td> +                                <td><input type="password" size="16" +                                  name="oldpass" maxlength="128" /></td> +                              </tr> +                              <tr> +                                <td align="right">New Password:</td> +                                <td><input type="password" size="16" +                                  name="newpass" maxlength="128" /></td> +                              </tr> +                              <tr> +                                <td +                                  align="right">New Password Again:</td> +                                <td><input type="password" size="16" +                                  name="newpass2" maxlength="128" /></td> +                              </tr> +                            </tbody> +                          </table> +                        </td> +                        <td width="100%"></td> +                      </tr> +                    </tbody> +                  </table> + +                  <div align="center"> + +                  <table border="0" cellspacing="0" cellpadding="4"> +                    <tbody> +                      <tr> +                        <td> +                          <input type="submit" value="Change Password" +                          name="do.changepwd" /></td> +                      </tr> +                    </tbody> +                  </table> +                  </div> +                  <!-- + +                  [#?#] + +                  --> +                  <!-- [#?8#] --> +                  <hr /> + +                  <div align="center"> +                  <a href="[#s#]&form=eventacl">Calendar access control +                  list</a></div> +                  <!-- [#?#] --> +                  <!-- + +                  End of preferences box + +                  --> +                </td> +              </tr> +            </tbody> +          </table> +        </form> +      </td> +      <td bgcolor="#99ccff" class="bluebox"></td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/print.html b/sqwebmail/html/en-us/print.html new file mode 100644 index 0000000..f2beb5a --- /dev/null +++ b/sqwebmail/html/en-us/print.html @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Message</title> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +  <!-- + +  [#$BADCONTENTTYPE=Unable to display unknown MIME type: %s#] + +  [#$ATTSTUB=Attachment: %s#] + +  [#$CHSET=<table width="90%%" align="center" border="0" bgcolor="#000000"><tr><td><table width="100%%" border="0" bgcolor="#eeeeee"><tr><td style="padding: 1em">The above text is written in the "<span class="tt">%s</span>" character set,<br />and some characters could not be converted to your display's "<span class="tt">%s</span>" character set.</td></tr></table></td></tr></table>#] + +  [#$HTML=<table align="center" border="0" bgcolor="#000000" cellpadding="1"><tr><td><table width="100%%" border="0" cellspacing="0" cellpadding="8" bgcolor="#eeeeee"><tr><td>HTML content follows</td></tr></table></td></tr></table><br /><br />#] + +  [#$MIMEGPGNOTICE=<p align="center">The following message contains signed or encrypted content.</p>#] + +  [#$NOTCOMPACTGPG=<p align="center" style="color: #800000">The encryption algorithm in the following message is not currently supported</p>#] + +  [#$DECRYPT=<p align="center">(Decrypt/Verify)</p>#] + +  [#$KEY=<table border="0" bgcolor="#000000" cellpadding="1"><tr><td><table border="0" cellspacing="0" cellpadding="8" bgcolor="#eeeeee"><tr><td>Encryption key</td></tr></table></td></tr></table>#] + +  --> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +</head> + +<body> +<p>[#M#]</p> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/printnocookie.html b/sqwebmail/html/en-us/printnocookie.html new file mode 100644 index 0000000..a845cf6 --- /dev/null +++ b/sqwebmail/html/en-us/printnocookie.html @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Please give me my cookies!!</title> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +</head> + +<body> +<h1>Please enable the cookies!</h1> + +<p>Your browser appears not to accept cookies from me :-(  I need to store +the session information in a temporary cookie in order to avoid having the +session information printed in the page header.  The cookie will be +automatically deleted after I format the message for printing.</p> + +<p></p> +</body> +</html> diff --git a/sqwebmail/html/en-us/printredirect.html b/sqwebmail/html/en-us/printredirect.html new file mode 100644 index 0000000..9c1b5a3 --- /dev/null +++ b/sqwebmail/html/en-us/printredirect.html @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Redirecting...</title> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +</head> + +<body> +<h2>SqWebMail Copyright 1999-2007, Double Precision, Inc.</h2> + +<p>Loading your message...</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/quickadd.html b/sqwebmail/html/en-us/quickadd.html new file mode 100644 index 0000000..bb35442 --- /dev/null +++ b/sqwebmail/html/en-us/quickadd.html @@ -0,0 +1,134 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Address Book</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +--> + +<div align="center"> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Address Book</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<form method="post" action="[#R#]"> +  [#P#]<input type="hidden" name="form" value="readmsg" /><input +  type="hidden" name="pos" value="[#input:pos#]" /> + +  <table cellpadding="0" cellspacing="0" border="0" width="95%"> +    <tbody> +      <tr style="line-height: 0"> +        <td align="left" valign="top">[#@bluetopleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle" width="100%"></td> +        <td style="line-height: 0" align="right" +          valign="top">[#@bluetopright.png, width="11" height="11" alt="" +          border="0"@@#]</td> +      </tr> +      <tr> +        <td bgcolor="#99ccff" class="bluebox"></td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"> +          <table border="0" cellpadding="4" cellspacing="0" width="100%" +          class="quickadd"> +            <tbody> +              <tr> +                <td align="center"><font size="+1">Quick Nickname +                Add</font></td> +              </tr> +              <tr> +                <td> +                  <table border="0"> +                    <tbody> +                      <tr> +                        <th align="right">Name:</th> +                        <td><input type="text" size="20" name="newname" +                          value="[#input:newname#]" /></td> +                      </tr> +                      <tr> +                        <th align="right">Address:</th> +                        <td><input type="text" size="20" name="newaddr" +                          value="[#input:newaddr#]" /></td> +                      </tr> +                      <tr> +                        <th align="right">New nickname:</th> +                        <td><input type="text" size="20" name="newnick1" />, +                          or</td> +                      </tr> +                      <tr> +                        <th align="right">Add to existing nickname:</th> +                        <td> +                          <select name="newnick2"> +                            <option selected="selected"></option>[#NICKLIST#] +                          </select> +                            +                          <input type="submit" value="Go" name="addnick" +                        /></td> +                      </tr> +                    </tbody> +                  </table> +                </td> +              </tr> +            </tbody> +          </table> +        </td> +        <td bgcolor="#99ccff" class="bluebox"></td> +      </tr> +      <tr style="line-height: 0"> +        <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +          height="11" alt="" border="0"@@#]</td> +        <td bgcolor="#99ccff" class="bluebox" valign="middle"></td> +        <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +          height="11" alt="" border="0"@@#]</td> +      </tr> +    </tbody> +  </table> +</form> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/readmsg.html b/sqwebmail/html/en-us/readmsg.html new file mode 100644 index 0000000..c6d9f90 --- /dev/null +++ b/sqwebmail/html/en-us/readmsg.html @@ -0,0 +1,192 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Message</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$DSPHDR_FROM=From#] (selectively substitute any E-mail header text) + +[#$DSPFMT_DATE=%d %b %Y, %I:%M:%S %p#] + +[#$NEXTLAB=@@right2.png, width="28" height="20" border="0" alt="Next Message" title="Next Message"@Next@#] + +[#$PREVLAB=@@left2.png, width="28" height="20" border="0" alt="Previous Message" title="Previous Message"@Prev@#] + +[#$DELETELAB=@@trash2.png, width="28" height="20" border="0" alt="Delete Message" title="Delete Message"@Delete@#] + +[#$PURGELAB=@@trash2.png, width="28" height="20" border="0" alt="Purge Message" title="Purge Message"@Purge@#] +[#$FOLDERLAB=@@folder2.png, width="28" height="20" border="0" alt="Folder" title="Folder"@Folder@#] + +[#$BADCONTENTTYPE=Unable to display unknown MIME type: %s#] + +[#$ATTACHMENT=Attachment: %s#] + +[#$DISPATT=<span class="message-attachment-link">Display</span>#] +[#$DOWNATT=<span class="message-attachment-link">Download</span>#] + +[#$REPLY=@@reply.png, width="28" height="20" border="0" alt="Reply" title="Reply"@Reply@#] +[#$REPLYALL=@@replyall.png, width="28" height="20" border="0" alt="Reply To All" title="Reply To All"@Reply To All@#] +[#$REPLYLIST=@@replylist.png, width="28" height="20" border="0" alt="Reply To List" title="Reply To List"@Reply To List@#] + +[#$FORWARD=@@forward.png, width="28" height="20" border="0" alt="Forward Message" title="Forward Message"@Fwd@#] +[#$FORWARDATT=@@forwardatt.png, width="28" height="20" border="0" alt="Forward As Attachment" title="Forward As Attachment"@Fwd As Attachment@#] + +[#$MSGNUM=Message %d of %d#] +[#$MSGNEWNUM=Message %d of %d <strong>(New)</strong>#] +[#$FULLHDRS=@@fullheaders.png, width="28" height="20" border="0" alt="Full Headers" title="Full Headers"@Full Headers@#] + +[#$MOVETO=Move to:#] +[#$PRINT=@@print.png, width="28" height="20" border="0" alt="Show For Printing" title="Show For Printing"@Show For Printing@#] + +[#$SAVEMESSAGE=@@save.png, width="28" height="20" border="0" alt="Download Message" title="Download Message"@Download Message@#] + +[#$INBOX=INBOX#] +[#$DRAFTS=Drafts#] +[#$TRASH=Trash#] +[#$SENT=Sent#] + +[#$CREATEFAIL=<font style="color: #ff0000" size="+1" class="error">ERROR: You do not have permission to create messages in this folder, or you have exceeded your quota.</font>#] + +[#$GOLAB=Go#] +[#$QUICKADD=Quick addressbook add#] + +[#$CHSET=<table width="90%%" align="center" border="0" bgcolor="#000000"><tr><td><table width="100%%" border="0" bgcolor="#eeeeee"><tr><td style="padding: 1em">The above text is written in the "<span class="tt">%s</span>" character set,<br />and some characters could not be converted to your display's "<span class="tt">%s</span>" character set.</td></tr></table></td></tr></table>#] + +[#$HTML=<table align="center" border="0" bgcolor="#000000" cellpadding="1" class="box-small-outer"><tr><td><table width="100%%" border="0" cellspacing="0" cellpadding="8" bgcolor="#eeeeee"><tr><td>HTML content follows</td></tr></table></td></tr></table>#] + +[#$HTML=<table align="center" border="0" bgcolor="#000000" cellpadding="1" class="box-outer"><tr><td><table width="100%%" border="0" cellspacing="0" cellpadding="8" bgcolor="#eeeeee" class="message-text-html-notice"><tr><td>HTML content follows</td></tr></table></td></tr></table><br /><br />#] + +[#$MIMEGPGNOTICE=<p align="center" class="message-gpg-notice">The following message contains signed or encrypted content.</p>#] ++ +[#$PASSPHRASE=<p align="center">Passphrase (if required): <input type="password" name="passphrase" /></p>#] + +[#$DECRYPT=<p align="center"><input type="submit" name="mimegpg" value="Decrypt/Verify" /></p>#] + +[#$NOTCOMPACTGPG=<p align="center" style="color: #800000" class="message-gpg-unsupported">The encryption algorithm in the following message is not currently supported</p>#] + +[#$PUBKEY=Import public encryption key#] + +[#$PRIVKEY=Import private encryption key#] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Message</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar2#] <!-- Border around the folders list --> + + +<table width="95%" border="0" bgcolor="#cccccc" cellpadding="1" +cellspacing="0" class="box-border-1"> +  <tbody> +    <tr> +      <td> +        <table width="100%" border="0" bgcolor="#ffffff" cellpadding="5" +        cellspacing="0" class="box-border-2"> +          <tbody> +            <tr> +              <td> +                <form method="post" action="[#p#]"> +                  [#n#] <input type="hidden" name="form" value="delmsg" +                  />[#P#][#m#] + +                  <table border="0" width="100%" bgcolor="#000000" +                  class="box-outer"> +                    <tbody> +                      <tr> +                        <td>[#N#]</td> +                      </tr> +                    </tbody> +                  </table> +                </form> + +                <table border="0" cellspacing="0" cellpadding="1" +                bgcolor="#000000" width="100%" class="box-outer"> +                  <tbody> +                    <tr> +                      <td> +                        <table border="0" cellspacing="0" cellpadding="8" +                        bgcolor="#ffffff" width="100%" +                        class="box-white-outer"> +                          <tbody> +                            <tr> +                              <td align="left">[#M#]</td> +                            </tr> +                          </tbody> +                        </table> +                      </td> +                    </tr> +                  </tbody> +                </table> + +                <form method="post" action="[#p#]"> +                  <input type="hidden" name="form" value="delmsg" />[#P#] + +                  <table border="0" width="100%" bgcolor="#000000" +                  class="box-outer"> +                    <tbody> +                      <tr> +                        <td>[#N#]</td> +                      </tr> +                    </tbody> +                  </table> +                  [#m#]</form> +              </td> +            </tr> +          </tbody> +        </table> +      </td> +    </tr> +  </tbody> +</table> +<!-- End of extreme outside table --> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/redirect.html b/sqwebmail/html/en-us/redirect.html new file mode 100644 index 0000000..e61cde2 --- /dev/null +++ b/sqwebmail/html/en-us/redirect.html @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>Redirecting...</title> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +</head> + +<body> +<h2>SqWebMail Copyright 1999-2011, Double Precision, Inc.</h2> + +<p>Loading <a href="[#r#]" style="text-decoration: none">[#r#]</a>...</p> +</body> +</html> diff --git a/sqwebmail/html/en-us/refreshfr.html b/sqwebmail/html/en-us/refreshfr.html new file mode 100644 index 0000000..cf4b2ec --- /dev/null +++ b/sqwebmail/html/en-us/refreshfr.html @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <title>SqWebMail - Copyright 1999-2009 Double Precision, Inc.</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.0, see http://www.w3.org/Amaya/" /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<frameset rows="0,*" border="0"> +  <frame src="[#s#]&empty=1&refresh=1" scrolling="no" noresize="noresize" +  frameborder="0" /> +  <frame src="[#s#]&form=folders" noresize="noresize" frameborder="0" /> +</frameset> +</html> diff --git a/sqwebmail/html/en-us/smileys.txt b/sqwebmail/html/en-us/smileys.txt new file mode 100644 index 0000000..1286460 --- /dev/null +++ b/sqwebmail/html/en-us/smileys.txt @@ -0,0 +1,9 @@ +:-)	sm-smiley2.png	width="12" height="12" alt=":-)" title=":-)" +:-(	sm-frowney2.png	width="12" height="12" alt=":-(" title=":-(" +:-|	sm-notsmiley2.png	width="12" height="12" alt=":-|" title=":-|" +:)	sm-smiley.png	width="12" height="12" alt=":)" title=":)" +:(	sm-frowney.png	width="12" height="12" alt=":(" title=":(" +:|	sm-notsmiley.png	width="12" height="12" alt=":|" title=":|" +;)	sm-wink.png	width="12" height="12" alt=";)" title=";)" +;-)	sm-wink2.png	width="12" height="12" alt=";-)" title=";-)" +:-o	sm-ohno.png	width="12" height="12" alt=":-o" title=":-o" diff --git a/sqwebmail/html/en-us/spellchk.html b/sqwebmail/html/en-us/spellchk.html new file mode 100644 index 0000000..9b079e4 --- /dev/null +++ b/sqwebmail/html/en-us/spellchk.html @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +  <meta http-equiv="content-type" content="text/html" /> +  <title>Check Spelling</title> +  <link rel="stylesheet" type="text/css" href="[#SQWEBMAILCSS#]" /> +  <meta name="GENERATOR" content="amaya 8.8.1, see http://www.w3.org/Amaya/" +  /> +  <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +</head> + +<body> +<!-- + +[#$IGNORE=Ignore#] +[#$IGNOREALL=Ignore All#] +[#$REPLACE=Replace with:#] +[#$REPLACEALL=Replace All#] +[#$INSERT=Insert into private dictionary#] +[#$CONTINUE=Continue#] +[#$FINISH=Finish#] + +--> + +<div align="center"> +<!-- Top Header --> + +<table cellpadding="0" cellspacing="0" border="0" width="95%"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top" +        style="line-height: 0">[#@graytopleft.png, width="11" height="11" +        alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="top" +        style="line-height: 0">[#@graytopright.png, width="11" height="11" +        alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#cccccc" class="graybox"> +      <td> </td> +      <td bgcolor="#cccccc" class="graybox" width="100%"> +        <table width="100%" border="0" cellspacing="0" cellpadding="0"> +          <tbody> +            <tr> +              <td align="left" width="100%" valign="middle" +              class="pageheader">Check Spelling[#d#]</td> +              <td align="right" valign="middle">[#G#]</td> +            </tr> +          </tbody> +        </table> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@graybottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#cccccc" class="graybox"></td> +      <td align="right" valign="bottom">[#@graybottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of Top Header --> +<!-- Sections. Folders, Create Messages, Preferences, Etc. --> +[#include:navbar#] + +<table cellpadding="0" cellspacing="0" border="0"> +  <tbody> +    <tr style="line-height: 0"> +      <td align="left" valign="top">[#@bluetopleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox"></td> +      <td align="right" valign="top">[#@bluetopright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +    <tr bgcolor="#99ccff" class="bluebox"> +      <td> </td> +      <td> +        <form method="post" action="[#p#]"> +          [#P#][#K#]</form> +      </td> +      <td> </td> +    </tr> +    <tr style="line-height: 0"> +      <td align="left" valign="bottom">[#@bluebottomleft.png, width="11" +        height="11" alt="" border="0"@@#]</td> +      <td bgcolor="#99ccff" class="bluebox"></td> +      <td align="right" valign="bottom">[#@bluebottomright.png, width="11" +        height="11" alt="" border="0"@@#]</td> +    </tr> +  </tbody> +</table> +<!-- End of extreme outside table --> +</div> + +<p>[#B#]</p> +</body> +</html> diff --git a/sqwebmail/html/lstsoftlinks b/sqwebmail/html/lstsoftlinks new file mode 100755 index 0000000..7bf7690 --- /dev/null +++ b/sqwebmail/html/lstsoftlinks @@ -0,0 +1,24 @@ +#!/bin/sh +# +# Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for +# distribution information. + +for f in $* +do +	SOFTLINK="" +	for component in `echo $f | tr '-' ' '` +	do +		if test "$SOFTLINK" = "" +		then +			SOFTLINK="$component" +		else +			SOFTLINK="$SOFTLINK""-$component" +		fi + +		if test -f $SOFTLINK/LANGUAGE +		then +			test `cat $SOFTLINK/LANGUAGE` = $SOFTLINK && continue +		fi +		echo $SOFTLINK +	done +done diff --git a/sqwebmail/html/mksoftlinks b/sqwebmail/html/mksoftlinks new file mode 100755 index 0000000..9dbf7e0 --- /dev/null +++ b/sqwebmail/html/mksoftlinks @@ -0,0 +1,31 @@ +#!/bin/sh +# +# Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for +# distribution information. + + +DIR="$1" +REALDIR="$2" + +SOFTLINK="" + +echo "mksoftlinks $DIR $REALDIR" + +for component in `echo $REALDIR | tr '-' ' '` +do +	if test "$SOFTLINK" = "" +	then +		SOFTLINK="$component" +	else +		SOFTLINK="$SOFTLINK""-$component" +	fi + +	if test "$SOFTLINK" != "$REALDIR" +	then +		test -d $DIR/$SOFTLINK/. && continue +		echo rm -f $DIR/$SOFTLINK +		rm -f $DIR/$SOFTLINK +		echo ln -s $REALDIR $DIR/$SOFTLINK +		ln -s $REALDIR $DIR/$SOFTLINK +	fi +done diff --git a/sqwebmail/html/rmsoftlinks b/sqwebmail/html/rmsoftlinks new file mode 100755 index 0000000..808f410 --- /dev/null +++ b/sqwebmail/html/rmsoftlinks @@ -0,0 +1,29 @@ +#!/bin/sh +# +# Copyright 1998 - 2000 Double Precision, Inc.  See COPYING for +# distribution information. + + +DIR="$1" +REALDIR="$2" + +SOFTLINK="" + +echo "rmsoftlinks $DIR $REALDIR" + +for component in `echo $REALDIR | tr '-' ' '` +do +	if test "$SOFTLINK" = "" +	then +		SOFTLINK="$component" +	else +		SOFTLINK="$SOFTLINK""-$component" +	fi + +	if test "$SOFTLINK" != "$REALDIR" +	then +		test -f $DIR/$SOFTLINK/LANGUAGE && continue +		echo rm -f $DIR/$SOFTLINK +		rm -f $DIR/$SOFTLINK +	fi +done | 
