| SillyDog701 Forums |
| Author |
Message |
Culemming

 Jay Joined: 03 May 2004 Posts: 2
|
03 May, 2004 11:05 am How do I import EML files from webmail to Netscape 7.1? |
[sdp=31909] |
|
I am new to Netscape, and very new to SillyDog701, and am looking for some help in importing some e-mail files that I have saved on a webmail server.
I had been using Eudora, but that was not working as I am studying abroad for a semester in Germany, and for sending out e-mail I was forced to use my school's webmail server for a short time. (SquirrelMail version 1.4.2) Domain: **@clemson.edu. I would like to be able to save the emails that I sent out on my computer, and found how to download them from the server as EML files, which I can double click and open in Netscape, but is there a way to import them into my sent mail folder? I know this can be done from Outlook, Eudora, etc. but I couldn't find any help on importing files from webmail or doing it manually. It would seem logical to me that there would be a folder that I could copy these files to, but I have not been able to find it.
I am using Windows 2k if that is needed.
Thanks for your help, and sorry if I am repeating a post, I searched first, but couldn't seem to find anyone who had this same problem.
-jay
UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) |
|
| Back to top |
|
 |
Fulvio


Joined: 19 Jun 2002 Posts: 11176
|
03 May, 2004 11:20 am |
[sdp=31914] |
|
You can't import files from Webmails, that I know.
UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) (CK-SillyDog)
"I've got a very poor sense of direction. I keep forgetting which way is forwards."
WinXP, SP3, 512 MB, FF3.6, 3.6 portable, TB 3.0.3, TB2.0.0.24, and FF3.5.10, FF3.7, TB3.1, SM2.0.4 nightlies, Google Chrome, IE8.0, Zone Alarm Firewall; AVG9.0, JRE1.6_18 |
|
| Back to top |
|
 |
Culemming

 Jay Joined: 03 May 2004 Posts: 2
|
03 May, 2004 12:01 pm Ok, thanks for the help |
[sdp=31918] |
|
Not even a way to import files manually huh? guess it'll have to be suggested to netscape for later versions. thanks for the help though,
-jay
UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) |
|
| Back to top |
|
 |
akbash


Joined: 09 Feb 2004 Posts: 363
|
03 May, 2004 2:03 pm |
[sdp=31925] |
|
Well if you want to do it manually...
A Netscape mail folder is just a single file containing a sequential list of messages. EMLs, one after another. I'm not certain whether this would work with all EMLs from all sources. And I'm not certain that it would work with an IMAP mail account. But you could try this. It's known to work with individual EMLs exported from Netscape (Mozilla, actually) into a POP3 account.
To each of your downloaded EML files, prepend a "received date" line. Make it look like the line that begins each message in one of your extant mail folders. Like this, say:
From - Mon May 03 12:00:00 2004
and make sure the file ends with a blank line. Now in your profile /Mail/<account name> directory, cat all these downloaded and slightly modified EMLs together into a new file, named whatever you like. Woogums, say. Launch Netscape. You should have a fully functional Woogums local mail folder containing those messages.
This shouldn't be dangerous, but as always, make a backup of your profile before experimenting.
UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8a) Gecko/20040427 |
|
| Back to top |
|
 |
Erg

 Alexandru-Ionut Chiuta Joined: 19 May 2004 Posts: 1 Location: Bucharest, Romania
|
|
| Back to top |
|
 |
Fulvio


Joined: 19 Jun 2002 Posts: 11176
|
19 May, 2004 11:11 am |
[sdp=33011] |
|
.eml is a Microsoft format, and Incredimail is geared toward such files.
I have been able to convert .eml files to .txt files, and thus bringing into Netscape, but not directly.
UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) (CK-SillyDog)
"I've got a very poor sense of direction. I keep forgetting which way is forwards."
WinXP, SP3, 512 MB, FF3.6, 3.6 portable, TB 3.0.3, TB2.0.0.24, and FF3.5.10, FF3.7, TB3.1, SM2.0.4 nightlies, Google Chrome, IE8.0, Zone Alarm Firewall; AVG9.0, JRE1.6_18 |
|
| Back to top |
|
 |
braincookie

 S. Kanzow Joined: 12 Jan 2005 Posts: 1
|
12 Jan, 2005 10:24 am EML to Netscape 7.1 Mailbox cenverter batch script |
[sdp=51074] |
|
Well, I didn't want to do it manually, so i wrote the following little dos batch Just copy and paste it to a file called something like EMLtoNetscape.bat and
execute it from the dos prompt. The rest is rather self-explaining
----------------------------------------------------------
@echo off
echo ===========================================
echo This batch file creates a NetscapeMail compatible mailbox out of
echo several *.eml files. The *.eml files must all be in the same
echo directory. Copy the created file into Netscapes mailbox folder
echo (see Edit - Mail&Newsgroups Account Settings - Local Folders)
echo Upon the next start of Netscape (close Mail & Browser),
echo the new folder will show in Netscape's folder pane.
echo Tested with Netscape 7.2 and DBXtract-generated *.eml files.
echo Copyright by Sebastian Kanzow 2005
echo ===========================================
if [%1]==[] goto Err1
if [%2]==[] goto Err1
echo %2 | find "."
if NOT ERRORLEVEL 1 goto Err2
echo From > %2
set EMLTEST=0
for %%a in (%1\*.eml) do (
set EMLTEST=1
echo Adding "%%a" to %2...
type "%%a" >> %2
echo From >> %2
)
if %EMLTEST%==0 echo Warning: No *.eml files in %1
echo ===========================================
echo FINISHED
echo ===========================================
exit /b
:Err1
echo Usage: %0 Folder_containing_eml_files Name_of_mailbox_to_create
exit /b
:Err2
echo Error: The mailbox name may not have an extension
--------------------------------------------------------------------
As a reply to akbash :
>Well if you want to do it manually...
>A Netscape mail folder is just a single file containing a sequential list of >messages. EMLs, one after another. I'm not certain whether this would
>work with all EMLs from all sources. And I'm not certain that it would
>work with an IMAP mail account. But you could try this. It's known to
>work with individual EMLs exported from Netscape (Mozilla, actually) into
>a POP3 account.
>To each of your downloaded EML files, prepend a "received date" line.
>Make it look like the line that begins each message in one of your extant
>mail folders.
UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) |
|
| Back to top |
|
 |
|