Ignore:
Timestamp:
04/02/19 15:22:06 (5 years ago)
Author:
bln4
Message:

Changes have been made to how mail is stored. Each user now has a location in their deaddrops folder (found inside their resources folder) that acts as an exchange location for each of their partnerships. Mail databases now belong in there.

Initial functionality to support the culling of already processed messages from the mail database has been implemented with more to follow.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/FrameIO.java

    r1274 r1277  
    116116        public static String HELP_PRIVATE_PATH;
    117117        public static String HELP_PATH;
     118        public static String DEAD_DROPS_PATH;
    118119
    119120        // Paths that appear to be unused.
     
    139140                PUBLIC_PATH = PARENT_FOLDER + "public" + File.separator;
    140141                TRASH_PATH = PARENT_FOLDER + "trash" + File.separator;
    141                 //MESSAGES_PATH = PARENT_FOLDER + "messages" + File.separator;
    142142                HELP_PATH = PARENT_FOLDER + "documentation" + File.separator;
    143143                PROFILE_PATH = PARENT_FOLDER + "profiles" + File.separator;
     
    162162                        AUDIO_PATH = PARENT_FOLDER + "audio" + File.separator;
    163163                        FRAME_PATH = PARENT_FOLDER + "framesets" + File.separator;
     164                        DEAD_DROPS_PATH = PARENT_FOLDER + "deaddrops" + File.separator;
    164165                }
    165166               
     
    199200                        MESSAGES_PATH = resourcesPrivateIndividualPath + "messages" + File.separator;
    200201                        MAIL_PATH = resourcesPrivateIndividualPath + "mail" + File.separator;
     202                        DEAD_DROPS_PATH = resourcesPrivateIndividualPath + "deaddrops" + File.separator;
    201203                }
    202204                       
Note: See TracChangeset for help on using the changeset viewer.