Archive with attachments to local folders

Looking for a way to change the behavior of the "Archive Messages" command. Instead of archiving to a folder on the mail server, I want it to archive to a local folder.

I do not have an answer to your problem but am interested in following this thread because I would like to get off the Mail application and do everything in iCloud.  My problem is I have a ton of messages in Mail folders, on my MacAir. I don't know how to get them to iCloud folders.  At this point I keep the attachments in folders on the HD so I don't need the attachments to come but I do need the message.

Similar Messages

  • Unable to move email with attachments from local folders to icloud

    I'm in the process of migrating my email to icloud. I've been able to move all emails without attacments from local folders to the cloud but evrytime I try to move emails with attachments I get one of two errors, either the imap server times out or it's unable to establish a secure connection (SSL).
    Anyone else come across this or point me in the right direction.
    And yes - I have been searching Google all afternoon and have not been able to find anything.

    I do not have an answer to your problem but am interested in following this thread because I would like to get off the Mail application and do everything in iCloud.  My problem is I have a ton of messages in Mail folders, on my MacAir. I don't know how to get them to iCloud folders.  At this point I keep the attachments in folders on the HD so I don't need the attachments to come but I do need the message.

  • UnZipping an archive with folders inside

    Hello, everyone.
    A friend of mine asked me to create him an "auto-downloader" type of program, to download a ZIP archive, then extract the information to the user's computer (no, it is not harmful).
    Anyways, I've been trying mutliple ways, and I've come pretty far with the one I'm currently using. The only problem is, I'm using user.home as the file location for the zip, and creating a folder in there seems to just not want to work. This is the only way I could think of doing it, but I'm sure there are easier ways.. here's what I'm using:
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.io.BufferedInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipInputStream;
    import javax.swing.JFrame;
    import javax.swing.JProgressBar;
    public class Updater extends Thread {
         private String name;
         public void get(String url, String fileName) {
              name = fileName;
              JFrame frame = new JFrame(name.replaceAll(".zip", "") + " update");
              frame.setLocationRelativeTo(null);
              frame.setLayout(new BorderLayout());
              frame.setPreferredSize(new Dimension(500, 80));
              frame.setResizable(false);
              frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
              Client client = new Client();
              ClassLoader cl = getClass().getClassLoader();
              try {
                   URLConnection connection = (new URL(url)).openConnection();
                   String f[] = url.split("/");
                   File file = new File(f[f.length - 1]);
                   int length = connection.getContentLength();
                   InputStream instream = connection.getInputStream();
                   try {
                        new File(updatedDirectory()).mkdir();
                   } catch (Exception e) {
                        e.printStackTrace();
                   FileOutputStream outstream = new FileOutputStream(updatedDirectory() + file);
                   int size = 0;
                   int copy = 0;
                   JProgressBar bar = new JProgressBar();
                   bar.setStringPainted(true);
                   bar.setMaximum(length);
                   frame.add(bar, "Center");
                   frame.pack();
                   frame.setVisible(true);
                   while ((copy = instream.read()) != -1) {
                        outstream.write(copy);
                        size++;
                        int percentage = (int) (((double) size / (double) length) * 100D);
                        bar.setValue(size);
                        bar.setString("Updating your " + name.replaceAll(".zip", "") + " - " + percentage + "% complete");
                   if (length != size) {
                        instream.close();
                        outstream.close();
                   } else {
                        instream.close();
                        outstream.close();
                        unzip();
                        //System.exit(0);
                        frame.setVisible(false);
              } catch (Exception e) {
                   System.err.println("Error connecting to update server.");
                   e.printStackTrace();
         private void unzip() {
              try {
                   System.out.println(updatedDirectory() + "animations\\raw");
                   InputStream in = new BufferedInputStream(new FileInputStream(updatedDirectory() + name));
                   ZipInputStream zin = new ZipInputStream(in);
                   ZipEntry e;
                   //new File(updatedDirectory() + name.replaceAll(".zip", "")).mkdir();
                   if (!new File(updatedDirectory() + "animations\\raw").exists()) {
                        if (new File(updatedDirectory() + "animations\\raw").mkdir()) {
                             System.out.println("worked");
                        } else {
                             System.out.println("nope");
                   while ((e = zin.getNextEntry()) != null) {
                        unzip(zin, updatedDirectory() + e.getName());
                   zin.close();
              } catch (Exception e) {
                   e.printStackTrace();
         private void unzip(ZipInputStream zin, String s) throws IOException {
              FileOutputStream out = new FileOutputStream(s);
              byte[] b = new byte[1024];
              int len = 0;
              while ((len = zin.read(b)) != -1) {
                   out.write(b, 0, len);
              out.close();
         public final String updatedDirectory() {
              //File file = new File(System.getProperty("user.home") + "\\info\\");
              File file = new File("..\\");
              if (file.exists() || file.mkdir()) {
                   //return System.getProperty("user.home") + "\\info\\";
                   return "..\\";
              return null;
    }Here's the ZIP archive I'm trying to download: http://www.2shared.com/file/Qu1cSWcl/cache.html
    If what I've said before doesn't make sense (mind you me, it's 4 am and I'm about to crawl into bed), then I'll try to sum it up in a few short words below.
    I'm trying to extract a ZIP archive with folders, every time I do, it stops halfway through and throws an error similar to this:
    invalid cache index specified
    ..\animations\raw
    java.io.FileNotFoundException: ..\animations\raw (The system cannot find the pat
    h specified)
            at java.io.FileOutputStream.open(Native Method)
            at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
            at java.io.FileOutputStream.<init>(FileOutputStream.java:70)
            at Updater.unzip(Updater.java:99)
            at Updater.unzip(Updater.java:90)
            at Updater.get(Updater.java:64)
            at Client.main(Client.java:2548)
    Press any key to continue . . .I'm just trying to be able to extract cache (ZIP ARCHIVE) which has folders inside. I've tried creating a directory for the folder, but it seems to not work, hence the "?" in the above error (i printed that if the directory failed to create a new directory, as seen in my above code). Once again, sorry if this isn't as understandable as it should be, I'm not myself without sleep :)
    Also, do ignore the first print, 'invalid cache index specified', it's not related to the problem.
    Edited by: aeternaly on Jul 2, 2010 4:04 AM

    So your question is really about how to make a directory, then. Nothing at all to do with unzipping of archives.
    If you can't create a directory, then perhaps there is some permissions problem. You don't have the authority to create directories in some directory. Or perhaps you're trying to use a name which isn't a valid directory name in your system. Or... there are many other possibilities. But anyway I recommend tossing all of that unzipping business out of your program and just trying to write something which creates a directory. Debug that first.

  • Setting up local folders with smart mailboxes?

    I use Mail for my work email, and am constantly going over my quota - Is there any way to set up local folders and use smart mailboxes to automatically move emails from certain people off the server and onto my hard drive? thanks in advance.

    You would not do this with Smart Mailboxes, as they are only the result of a search list, and don't actually cause any message to move. Instead, you would use ordinary Rules to do this, but would have to select all messages every so often, and then command to have the Rules applied, when done after the fact of receiving the message.
    A Smart Mailbox might be a good way to group messages for your consideration, manually, to move to On My Mac mailboxes.
    Ernie

  • Archiving of shopping cart with attachments

    Hi All,
    Can anyone explain archiving of shopping carts with context of attachments.
    We are storing the attachments added to the SC in SRM server itself. This is happening as per stanndard SAP.
    We are observing that a when we archive SC, the associated attachments do not get archived. They continue to remain in the SRM tables. Thus occupying space. Is there any way by which we can archive the attachments associated with SCs.
    Regards,
    Girish

    Hello,
    approving a shopping card without any workflow
    is impossible in the Standard SRM case.
    As there is no workflowlog anymore , it was deleted somehow. Please
    ceck if you got processes where the workflow will be archived or deleted
    after a while.
    The question in my point of view is, why was there a workflow
    without any approval steps ?
    As i can see you are using only the workflow ws14500015 which
    is a badi workflow. So the behaviour is controlled from your
    badi,as all approvers come from the BADI.
    If there is a automatic approving then the BADI brings not back
    any approver and the setrelease method of the workflow is triggered
    then immetiately to set the status to "released" = "approved".
    To Do:
    Check your BADI for Shopping Cards like the example one mentioned above.
    Make sure that the workflow logs persist in the system for analysing
    the processes and to get the correct approval preview.
    regards,
    Gaurav

  • Local folders not visible, are these same as Archive?

    My online quota is full and I want to download and keep a lot of mail in a dozen different online folders. How can I download and protect/save/backup these so that they won't be erased when I delete them from the server when Thunderbird next goes online. There are no "local folders" visible on my folder list. How can I find/create them? And what's the difference between local folders and archive? Sorry if this is obvious stuff but I'm used to POP and can't seem to work this out!
    Many thanks.

    Probably
    View menu (AQlt+V) > folder > all will locate "local folders.
    Archive is really where you tell it to be. The default in IMAP is an archive folder in the IMAP account.
    Tools menu (alt+T) > Account settings > Copies folders allows you to "SET" the archive folder to a folder in whatever account you like. Local folders is an option.
    Also take the time while there to review the archive options as to folder layout and make sure it is how you like. (Retaining existing folder structure is not a default selection)

  • Recieved email from WHICH with [Request ID :##55675##] : in the subject heading is crashing my THUNDERBIRD when I move the email from INBOX to local folders

    Recieved email from Computer Help at WHICH magazine with [Request ID :##55675##] : in the subject heading is crashing my THUNDERBIRD (and other programs) when I move the email from INBOX to local folders. The only work-around found so far is to shut them down with task manager, as they wont otherwise close.
    However if I move the Reply with the same subject heading from my SENT box to LOCAL FOLDERS I dont get the problem.
    Hav I found a faulty software trap in the base code.
    Thunderbird is up to date and it is on a 64kb intel i7 quad processor 8G ram desktop using windows 7 latest update.

    To diagnose problems with Thunderbird, try one of the following:
    *Restart Thunderbird with add-ons disabled (Thunderbird Safe Mode). On the Help menu, click on "Restart with Add-ons Disabled". If Thunderbird works like normal, there is an Add-on or Theme interfering with normal operations. You will need to re-enable add-ons one at a time until you locate the offender.
    *Restart the operating system in '''[http://en.wikipedia.org/wiki/Safe_mode safe mode with Networking]'''. This loads only the very basics needed to start your computer while enabling an Internet connection. Click on your operating system for instructions on how to start in safe mode: [http://windows.microsoft.com/en-us/windows-8/windows-startup-settings-including-safe-mode Windows 8], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-7 Windows 7], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-vista Windows Vista], [http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/boot_failsafe.mspx?mfr=true" Windows XP], [http://support.apple.com/kb/ht1564 OSX]
    ; If safe mode for the operating system fixes the issue, there's other software in your computer that's causing problems. Possibilities include but not limited to: AV scanning, virus/malware, background downloads such as program updates.

  • I cannot archive emails with attachments

    I can archive emails without attachments, however, when I include any emails WITH attachments, I get the following error message: "Server xxx has disconnected. Server may have gone down or there may be a network problem." Once I choose an email with an attachment and try to archive it, I have to close and re-open Thunderbird before I can even archive emails without attachments again.

    First check to make sure you have data turned on and not just Wi-Fi. From reading your question you seem to be saying e mail is working just not attached photos. What size are the photos as some HD photos can't be sent. Your camera may be set at a very high picture size and you can go to settings and lower the size and that may solve your mailing problem.

  • Are there LOCAL FOLDERS in Mail?

    Would anyone mind giving me a heads up as to whether there are Local Folders in Mail? Is this different than "Archiving"?
    I currently have a whole bunch of folders that exist in one of my primary email accounts - that I am using to sort mail - and it appears to me that these are not working so well (slow to move, slow to access, I have to close out of Mail to see a folder rename etc).
    I would like to try and move these "off" the server and see if they can be managed with a little more precision.
    Thanks,
    Jon

    Hi Ernie.
    Thanks very much for the help.
    I seem to have found that moving a folder from an IMAP account to the On My Mac account does in fact work. The only problem I am seeing is that the old folder remains in the IMAP account which basically makes it a little difficult to know for a fact that all the mail in that folder has been moved over. I wonder if it is possible to /force/ a move in this instance...
    I suppose the alternative is in fact to create a new folder on On My Mac and to move the individual emails as you seem to suggest.
    Do you mind if I ask you here if there is a reliable way to delete duplicate emails in Mail? I seem to have ended up with a lot of these over the years and it would be nice to move forward in a little more of a streamlined manner if possible.
    Thanks and Regards.
    Jon

  • Messages from local folders get corrupted when the folders are moved to different location

    Hello,
    I have several local folders with thousand of messages. Normally I store them on a mapped network driver so my local folder configuration in Thunderbird is like Z:\emails.
    I needed to move the local folders to my computer and what I did was copy the whole folder "emails" from my network location and reconfigured Thunderbird local folder config to C:\emails - basically same as before but on a local drive. Restarted Thunderbird as requested by the application.
    (I should mention that I've done this exact procedure before(but not recently) and it was working fine. )
    Anyway, when I did that I could see all my local folders however when I attempted to access any of the folders Thunderbird would perform "rebuilding index..." automatically which ends up in that all the messages in my local folder are marked as "unread" and they have no header - no subject or sender or people in cc, no attachments. If I attempt to see any of the emails I can see the content of the email(the written part anyway) and instead of the normal header I see the technical information of the header that looks like:
    X-Mozilla-Status: 0001
    X-Mozilla-Status2: 00000000
    X-Mozilla-Keys:
    followed by "Send - (for example "muder [(unix socket)])", "Received", "Scanned" "Certificate", authentication and other technical information.
    Currently running Thunderbird 31.0 on W7 Pro x64. As I already mentioned I've done the above procedure several times before but not recently and since then I've updated Thinderbird at least a couple of times so I assume the problem is caused by something in the newer versions.
    Any help would be appreciated.

    wdseml files are provided for the sole purpose of allowing windows limited search to search mail. They form no part of your mail store in Thunderbird really and constitute a total waste of disk space unless you are in the practice of using windows search to search your mail. Something I simply do not understand as Thunderbirds search is superior in my view.

  • T'bird stopped sending msg with attachments or save it in drafts

    When sending messages with attachments, I get the following error:
    Sending of message failed.
    Unable to open the temporary file C:\Users\Rick\AppData\Local\Temp\moz_mapi\Document - 14101501 Dairy Queen Hastings - Created Nov 24, 2014.pdf. Check your 'Temporary Directory' setting.
    When I try to save it in Drafts:
    Unable to save your message as draft.
    Unable to open the temporary file C:\Users\Rick\AppData\Local\Temp\moz_mapi\Document - 14101501 Dairy Queen Hastings - Created Nov 24, 2014.pdf. Check your 'Temporary Directory' setting.
    There was possibly a Windows update a few days before the trouble.
    I can't find 'Temporary Directory' setting and wouldn't know what to do with it if I found it.

    You need to delete the document from the C:\Users\Rick\AppData\Local\Temp\moz_mapi folder.
    These folders etc are in the 'AppData' folder which is hidden by default.
    You can make hidden files and folders visible.
    * http://kb.mozillazine.org/Show_hidden_files_and_folders

  • How do I mark an recently copied email to the local folders as read?

    I have a message filter for a local imap account setup to copy messages to the Local Folders. I do this because the imap account is actually an exchange account with a ton of email and I can't keep all of my email in the main exchange account so I use an exchange online archive which is hidden to thunderbird due to compatibility. Copying to local folders allows archiving and full searching all while keeping keeps thunderbird very fast. Alternatively if I have more than lets say 50,000 emails synced over imap from exchange compatibility things become horrendously slow.
    Currently I have a message filter that copies messages from my imap to Local Folders. If I try to mark it read after the move, as in while in Local Folders it does it afterwards and I then miss the message. My goal is to only mark it read in Local Folders.
    The problem is if I try to mark the copied message as read it must do it prior to the copy, which ruins my ability to keep track of what I have and have not read yet.
    I tried to put another filter under Local Folders that just marks all messages that come into local folders marked as read but it doesn't take unless I run it manually on the folder. My understanding is that this occurs because the copy doesn't happen at the same time messages are synced.
    How can I have it so the messages in the local folder are marked as read?

    Done some searching and located an addon which is not auto run, but is quicker than writing filters etc. It creates a button/icon to use to mark all emails in selected folder as read.
    * https://addons.mozilla.org/en-US/thunderbird/addon/mark-all-read-button/
    '''How to install addon:'''
    Download to desktop.
    In thunderbird
    Tools > Addons
    Click on gear wheel icon and select; Install addon from file'
    locate the file you downloaded and click on Open
    You may need to restart Thunderbird at prompt.
    '''Second option:'''
    If you do not want another icon to add to toolbar - it does get messy if you keep adding icons :) then there is another method of adding it to the right click drop down context list of folders.
    Make hidden files and folders visible;
    * http://kb.mozillazine.org/Show_hidden_files_and_folders
    In thunderbird
    * Help >Troubleshooting Information
    * click on 'Show folder' button
    * '''Close Thunderbird now - this is important.'''
    It will open showing Profile folder name contents.
    You will see a 'Mail' and an 'ImapMail' folder plus other stuff.
    * Create a new folder called '''chrome''' Note the spelling. It should be in same location as 'Mail' folder.
    * Open Notepad
    * Copy paste all the section between the two lines below
    * save the file as '''userChrome.css''' in the '''chrome '''folder - note all spellings.
    then restart thunderbird.
    Right click on eg: Local Folder Inbox
    you should see an option 'Mark folder read'
    <pre>
    * Do not remove the @namespace line -- it's required for correct functioning
    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    #folderPaneContext-markMailFolderAllRead {
    list-style-image: none !important;
    </pre>
    ----------------------------------------------

  • FireFox images not loading in local folders (firebug error-Failed to load given URL)

    I am having difficulty when developing websites in local folders (Windows7 computer). The webpages I make are showing images in IE9 & Chrome but not FireFox (nor Safari nor Opera).
    In FireFox I get Firebug "Failed to load given URL" prompt.
    I am using html5 & external linked css stylesheet & the html/html5 & css code validates.
    I have tried using rel path ie images/image.gif & absolute path references ie C:/RPD_Programming/RPD WEB/amwcsnew/index.html
    and have tried using % to eliminate whitespace in references but I cannot get FireFox to display images!!
    This has been a problem for me for around 2 weeks now & is very frustrating. Some website code/templates I have downloaded from the internet display the websites properly (ie load images fine) when I open them locally in FireFox. Why does my code not allow the images to load in FireFox (paths/permissions/other issue??). How can I fix this?
    Here is example css & html5 not displaying images from local directory in FireFox (fine in IE9 & Chrome):
    style.css
    /* CSS Document */
    /*Basic Reset*/
    margin:0;
    padding:0;
    html{
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    display: block;
    body{
    width:1200px;
    margin:0 auto;
    header{
    height:450px;
    background:url("C:/RPD_Programming/RPD WEB/amwcsnew/images/header.gif");
    background-repeat:no-repeat;
    #mid{height:750px;
    background:url('C:/RPD_Programming/RPD_WEB/amwcsnew/images/mid.gif')no-repeat;
    footer{height:286px;
    background:url('C:/RPD_Programming/RPD WEB/amwcsnew/images/footer.gif')no-repeat;
    index.html
    <!doctype html><!-- simplified doctype works for all previous versions of HTML as well -->
    <!--html5 template from www.impressivewebs.com_modified by RPD-->
    <!-- Paul Irish's technique for targeting IE, modified to only target IE6, applied to the html element instead of body -->
    <!--[if lt IE 7 ]><html lang="en" class="no-js ie6"><![endif]-->
    <!--[if (gt IE 6)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
    <head>
    <!-- simplified character encoding -->
    <meta charset="utf-8">
    <title>amwcs-new</title>
    <meta name="description" content="amwcs">
    <meta name="author" content="rpd">
    <!-- Delete these two icon references once you've placed them in the root directory with these file names -->
    <!-- favicon 16x16 -->
    <link rel="shortcut icon" href="/favicon.ico">
    <!-- apple touch icon 57x57 -->
    <link rel="apple-touch-icon" href="/apple-touch-icon.png">
    <!-- Main style sheet. Change version number in query string to force styles refresh -->
    <!-- Link element no longer needs type attribute -->
    <!-- <link rel="stylesheet" type="text/css" media="all" href="css/style.css" />-->
    <link rel="stylesheet" href="css/style.css?v=2">
    <!-- Modernizr for feature detection of CSS3 and HTML5; must be placed in the "head" -->
    <!-- Script tag no longer needs type attribute -->
    <script src="js/modernizr-1.6.min.js"></script>
    <!-- Remove the script reference below if you're using Modernizr -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    </head>
    <!-- If possible, use the body as the container -->
    <!-- The "home" class is an example of a dynamic class created on the server for page-specific targeting
    <body class="home">-->
    <body>
    <!-- ******************************************************************** -->
    <!-- The content below is for demonstration of some common HTML5 elements -->
    <!-- More than likely you'll rip out everything except header/section/footer and start fresh -->
    <!-- First header has an ID so you can give it individual styles, and target stuff inside it
    <header id="hd1"> No way Hosay-not by default! Default is <header> tag (RPD edit) -->
    <header>
    <!-- "hgroup" is used to make two headings into one, to prevent a new document node from forming -->
    <hgroup>
    <h1>amwcs</h1>
    <h2>tagline</h2>
    </hgroup>
    <!-- Main nav, styled by targeting "#hd1 nav"; you can have more than one nav element per page -->
    <nav>
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Contact</a></li>
    </ul>
    </nav>
    </header><!--End header & or #hd1 header div id if used-->
    <!-- This is the main "div" that wraps the content generically; don't use "section" for this -->
    <div id="mid">
    <!-- The first of two "section" elements for demo purposes; optional class added for styling (hs1 = "home section 1") -->
    <section class="hs1">
    <!-- Each section should begin with a new h1 (not h2), and optionally a header -->
    <!-- You can have more than one header/footer pair on a page
    <header>
    <h1>This is a Page Sub Title</h1>
    </header> -->
    <p>Some content...</p>
    <!-- The h2 below is a sub heading relative to the h1 in this section, not for the whole document -->
    <h2>Demonstrating EM and STRONG</h2>
    <!-- "strong" is used for SEO and contextual hierarchy -->
    <p><strong>This text will have more importance (SEO-wise and contextually)</strong></p>
    <!-- "b" is used for stylistic offset of text that's NOT important contextually -->
    <p><b>This text has visual importance but has no contextual or SEO importance</b></p>
    <!-- "em" is used for colloquial-style emphasis -->
    <p>This is a <em>very</em> colloquial expression.</p>
    <!-- There can be multiple footers on each page -->
    <!-- Secondary headers and footers don't necesarily need ids; they can be targeted via context (i.e. ".hs1 footer")
    <footer>
    <!-- incite a riot: http://24ways.org/2009/incite-a-riot
    <p>Author: <cite>Louis Lazaris</cite></p>
    </footer> -->
    </section><!-- .hs1 -->
    <!-- This is another section; doesn't have header/footer because it's not required -->
    <section class="hs2">
    <h1>This is another section</h1>
    <p>This is some dummy content</p>
    </section><!-- .hs2 -->
    </div><!-- #mid -->
    <!-- The "aside" element could be a sidebar (outside an article or section) -->
    <!-- Or it could reference other tangentially-related content within an article or section
    <aside id="sidebar">
    <p>Sidebar content</p>
    </aside>-->
    <!-- The main footer has an ID for targeting, similar to the main header -->
    <footer >
    <p>copyright &copy; year</p>
    </footer>
    <!-- Remote jQuery with local fallback; taken from HTML5 Boilerplate http://html5boilerplate.com -->
    <!-- jQuery version might not be the latest; check jquery.com -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
    <script>!window.jQuery && document.write(unescape('%3Cscript src="js/jquery-1.4.4.min.js"%3E%3C/script%3E'))</script>
    <!-- Below is your script file, which has a basic JavaScript design pattern that you can optionally use -->
    <!-- Keep this and plugin scripts at the bottom for faster page load; combining and minifying scripts is recommended -->
    <script src="js/general.js"></script>
    <!-- asynchronous analytics code by Mathias Bynens; change UA-XXXXX-X to your own code; http://mathiasbynens.be/notes/async-analytics-snippet -->
    <!-- this can also be placed in the <head> if you want page views to be tracked quicker -->
    <script>
    var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
    (function(d, t) {
    var g = d.createElement(t),
    s = d.getElementsByTagName(t)[0];
    g.async = true;
    g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    s.parentNode.insertBefore(g, s);
    })(document, 'script');
    </script>
    </body>
    </html>
    I am most grateful for help & look forward to replies & fixing this-thanks
    NB
    Is there a FireFox guide/manual in pdf format available anywhere? I have not found one yet & a FireFox reference might be useful!

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • Syncronization: How can i store mail for different accounts remotely, and copy most important mails manually to local folders on two devices?

    Hello. I have two devices and two accounts, so what i want is this:
    I only want to store mail from both accounts in a remote place and copy most important mails to local folders.
    (I will be grateful for any ideas as to where/how this "cloud" can be - specially free places)
    * Can I have a copy of these local folders in both devices and the remote storage?
    * Could i synchronize devices so that: when i move a mail to a local folder in any device, its copied to the same folders in
    the other device and the remote storage place?
    * The remote storage place will have many other folders. When I open Thunderbird, I also want to see these and the mail
    inside, and also be able to move mail from the inbox to these folders.
    * One of the accounts is gmail. In Account Setting tool, there is an option for synchronization. If there is no easier way, I can have mail for other account copied to gmail, and just syncronize gmail mail. For this, how will I copy my present folder structure to gmail. And how can I syncronize the local folders on the two devices?
    Thanks in advance.

    The first awkwardness I see is that there's no obvious format in which to store messages remotely such that you can work with them in an email client. It may be possible to set the "Local Directory" option in the account in Thunderbird to point at some remote folder (DropBox comes to mind) but I have never tried this and I'd be nervous about what happens if connection can't be made, or if you happened to access it from two different places simultaneously. The other concern is that mail stores get big, quickly, and you'd be forever uploading and downloading large (multi gigabyte) files. Thunderbird stores what looks like a folder containing many separate messages as one big file, so there's no simple opportunity for incremental changes to be up/down loaded.
    The whole idea of Local Folders in Thunderbird is to detach messages from servers, so they don't track what happens on servers. I say this to point out the distinction between files stored locally and permanently ("Local Folders"), versus cached copies of online files ("synchronized"). It's not safe to regard your synchronized folders as permanent.
    So, synchronized folders on an IMAP server are "mirrored" in Thunderbird so you do have a local (albeit temporary and transient) copy of messages; this is done mainly to avoid repeatedly downloading messages if you re-read them, and it makes searching faster an more efficient. But these "synchronized" message track what's being done on the server, and so if they are deleted anywhere, all synchronized devices will at some point also see the deleted messages vanishing. (Unless you made a local copy in the Local Folders account.)
    I use a gmail account pretty much as you have described; I copy or move messages to that account so they are visible in my phone, my tablet, my own laptop and my works computer. It's free, and it's "in the cloud"; the only reservation I have is its privacy. There are other providers (e.g. 1&1/gmx) who don't seem to have the data collection fetish that google thrives on.
    It's fairly simple to create filters in Thunderbird to automatically copy messages to your "cloud account"; even better is to set up forwarding rules on the other accounts' servers, so your messages are automatically sent on and waiting for you when you next login, already in the cloud account.

  • Local folders in Mail

    Hi, I have a problem to create a new "Local Folder" in my Mail program. I am talking about local folders which I can see in right gray panel in Mail program ( Inbox, Smart Mailboxes, Reminders, RSS and On My Mac - local folders).
    These folders was created when I moved my all e-mail from external HD. I can not find these folders on my Macintosh HD.
    Any suggestion, please.

    yes, Mac OS is good ( Idid not know about it until move from PC to Mac last week).
    I found this folder: Mac HD-Users-choose admin or user - library-mail-mailboxes-LOCAL FOLDERS.
    If you want to add a folder - put a new folder in there and name it with extension .mbox.
    It is so simple.

Maybe you are looking for

  • jsp:include in JSF

    Hello all, I am having a problem including a jsp page into another jsp where both are using the JSF framework. If I used the <f:view> and bring up just that page by itself (not included in another page), it works fine. And if I include it in a page w

  • Is backing up that important?

    OK so I want to install Windows XP on my 13" Mac Book. It says to back up the hard drive. I have like 148.7GB on my HD and I don't have an external HD nor do I have the money at the moment to buy one. I have a crappy minimum wage job and I'm in colle

  • Best practice for long term maintenance ??

    still busy with the long term maintenance requirement. when maintaining a building my client wants to register the following - long term maintenance (like 15 till 25 years) - short term is already in preventive maintenance - the long term maintenance

  • HT5577 how do i change Alternate Apple ID???

    How do I change my alternate  Apple ID?

  • Complete documentation of command lines parameters of Olite programs

    Where can one find the complete documentation of the command line parameters supported by following olite programs? 1) update.exe 2) dmagent.exe 3) setup.exe 4) olver.exe 5) olSyncAgent.exe 6) olmig.exe 7) FileServer.exe 8) autosync.exe Can any one e