Receiving Email Messages through Oracle procedure using forms.

Hi,
First of all best wishes for the people who are delivering their knowledge in that forum.
I would like to have a procedure that connect to pop servers and receive email messages with attachments. We want to do this through oracle forms.
What type of routine, I need that browses through the pop servers and receives email messages with attachments into database tables, through forms.
Can I have an example that how we do that?
Your valuable information will help me lot.
Woolmer
Databases 8i/9i
forms 6i

I exactly don't know the code, but I can tell you the steps how to do it. If u find it useful
Oracle built-ins like UTL_TCP exist that could make it possible to receive email completely inside a stored procedure
1) Create a special email address on a convenient mail server.
2) If the mail server isn't the same machine as the database server, use a program like GNU fetchmail that will pull the mail down to the local machine.
3) Now that the mail data is available in a mail file on the local machine, use one of a variety of techniques to load the email data from the file into the database.

Similar Messages

  • Printing messages through ODI procedure using Javashell bean

    I am new to this ODI procedure using Javashell bean.
    As i know some basics in Java ,i am trying this following code through ODI.
    I wanted to print messages using the code System.out.println("Welcome");
    But where we can see the output for this code in ODI?
    If any on knows ,kindly let me how do i can go about this?

    if you run an agent from the command line and you are executing your procedure using this agent then  the output will be reported in the dos/cmd window.

  • Help sending out long email message from ORACLE PL/SQL

    Hello,
    I need help sending out long email message from ORACLE PL/SQL.
    My message(email body) contains about 4000 characters and comes out truncated somewhere on the middle.
    My business requirements do not allow me to send it as attachment.
    I am using oracle utl_smtp package and on oracle 10gR2.
    Is it possible to send out long text message from Oracle?
    Thanks!
    Ia

    Thank you very much for your responses.
    Even if I use email procedure below my message is getting truncated.
    Here is how I am trying to execute the procedure from sql plus:
    DECLARE
    P_SENDER VARCHAR2(32767);
    P_RECIPIENT VARCHAR2(32767);
    P_SUBJECT VARCHAR2(32767);
    P_BODY VARCHAR2(32767);
    BEGIN
    P_SENDER := 'xxxx@yyy';
    P_RECIPIENT := 'xxxx@yyy';
    P_SUBJECT := 'long text message';
    P_BODY :=
    '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    7 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    8 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    9 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    10 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    11 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    12 34567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
    21 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789';
    EMAIL ( P_SENDER, P_RECIPIENT, P_SUBJECT, P_BODY );
    COMMIT;
    END;
    SQL> @long_sp;
    PL/SQL procedure successfully completed.
    The email message is:
    long text message
    xxx@yyyy
    Sent:     Tuesday, May 25, 2010 6:52 AM
    To:     
    xxx@yyyy
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 7 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 8 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 9 12345678901234567890123456789012345678901234567890123456789012345678901234
    Message is getting truncated around 1000 characters.
    What am I doing wrong?
    Please help!
    Thanks!!

  • Stopped receiving email messages

    I have a Blackberry Curve 8300 and my ISP is earthlink.net. Everything has been working fine until today, when I stopped receiving email messages on my Blackberry. I just checked, and I can send messages fine, evidently, but not receiving them.
    Solved!
    Go to Solution.

    Hmmm...I'd suggest a couple of things. First, a reboot:
    With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation.
    If that fails, then try resending your service books:
    http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB02830&slic...
    Give those a try and let us know.
    Cheers!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HT1296 Any way to sync sent/received email messages on iPad with Mac computer.

    Any way to sync sent/received email messages on iPad with Mac computer?

    The easiest way is to use an IMAP mail account exclusively. Stay away from "On My Mac" mailboxes/folders and POP3 accounts.

  • Receiving Email messages on Palm 650

    I am having trouble receiving email messages via XpressMail on my 650.  I have a hotmail account set up and it notify's me that I have a  new email but I cant seem to update my me account.  I looked on AT&T's website and below is what it instructed me to do.  Where is says, press the Menu Button, I am not seeing that on my phone.  I preformed a hard refresh last night to wipe the slate clean.   
    1.  when in account Inbox, press menu button
    2.  From the message menu, select receive. 
    3.  downloading will begin
    Post relates to: Treo 650 (Cingular)

    Hotmail is a web based email service and you will need to use the Blazer browser to access the msn home page and then get to your email. You cannot setup a hotmail email account on the device using the email app. You need a POP or IMAP account in order to setup an email account on the Treo, these are usually a fee for service account.
    Post relates to: Palm i705

  • How to get resultset from oracle procedure use ejb3

    how to get resultset from oracle procedure use ejb3
    i know oracle procedure should like this
    Create or replace PROCEDURE resultset_test(
    aaa IN NUMBER,
    bbb OUT sys_refcursor) ....
    but what s the ejb3 scripts looks like? please give me an example or link~
    ths

    - there are no EJB3 scripts, only compiled application code
    - the part of the EJB spec that deals with databases is called the Java Persistence API, but likely you are just looking for the JDBC API.
    Now you should know what to Google to get your "example script": "java jdbc oracle procedure"

  • Update Yes/No field in access table through oracle procedure

    Hi,
    How to update Yes/No field in access table through oracle procedure. all other fields like AutoNumber, Text I can update it. Yes/No field how to update? Please, any one can help me?
    Thanks and Regards,
    Sudha.

    Sudha Teki wrote:
    select "fldPost" from tblPHd@ODBCLNKNot quite sure what you mean, but the way you select the column would indicate a case sensitive column name
    Look at this example
    SQL> create table t
      2  ("this" varchar2(10))
      3  /
    Table created.
    SQL> insert into t values ('hello')
      2  /
    1 row created.
    SQL> select *
      2    from t
      3  /
    this
    hello
    SQL> select this
      2    from t
      3  /
    select this
    ERROR at line 1:
    ORA-00904: "THIS": invalid identifier
    SQL> select "this"
      2    from t
      3  /
    this
    helloIs your column name also case sensitive?

  • I received the message 'The registry settings used by the iTunes drivers for importing and burning CD's and DVD's are missing. Please reinstall iTunes.'  I have re-installed iTunes and still receive this message.  Any suggestions?

    I received the message 'The registry settings used by the iTunes drivers for importing and burning CD's and DVD's are missing. This can happen as a result on installing other CD burning software. Please reinstall iTunes.'  I have re-installed iTunes and still receive this message.  Any suggestions?

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • When attempting to upgrade my iMac from Snow Leopard to Mavericks, I receive the message "This disk is used for Time Machine Backups" when I try to select the lone available hard drive.

    When attempting to upgrade my iMac from Snow Leopard to Mavericks, I receive the message "This disk is used for Time Machine Backups" when I try to select the lone available hard drive.  I have ensured that Time Machine is turned off.  Upon some Google research, some who reported this problem were told to delete the folder backup.backupdb, but I do not have this folder on my Mac.  Any suggestions?

    The folder would be at the root of your hard drive. Double-click Macintosh HD and look there.
    If it isn’t there, I’m not sure what it is seeing.

  • I cannot compose, reply or forward any email messages in gmail. Using Firefox 14.0.1. The page continuously showing "Loading" at the top. It doesn't happe

    I cannot compose, reply or forward any email messages in gmail. Using Firefox 14.0.1. The page continuously showing “Loading” at the top.
    It doesn't happen with all my gmail accounts, just 2 out of 3.
    I’ve read the suggested solutions to change the dom.storage config setting to true, but the setting was already set to true. Any suggestions?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Cant receive email message to my alteranate email address, cant receive email message to my alteranate email address

    cant receive email message to my alternate email address

    Is your alternate email account still valid and active? Is all information entered correctly in the settings on you iPad? A little more information would help us help you.

  • Receiving email messages using UMS: messages dropped?

    This is the situation: I've setup User Messaging Service (UMS) on SOA Suite 11g (11.1.1.5.0) to receive messages on a certain email account. I've then implemented a small HttpServlet that uses the UMS API (based on the usermessagingsample-echo sample provided by Oracle) that registers itself with UMS as a listener for that email address upon server startup, and deployed that to WebLogic (10.3.5).
    Now consider the following scenario:
    1. Bring down the soa server
    2. Send an email to the email address
    3. Start up the soa server
    4. The email that was sent during the soa server down time is never delivered to the listening HttpServlet.
    5. After the soa server has started up completeley, send a second email to the email address
    6. The second email is delivered to the listening HttpServlet
    The problem here is number 4 in the list (obviously).
    Here is the configuration of UMS: http://i.imgur.com/vNwkLFZ.png (incoming mail server and port are empty in the screenshot, but they are correctly set, I made an error creating the screenshot)
    And the stdout logfile of the soa server: http://pastebin.com/TsDqftXD
    A few things to note:
    1. Notice that very early on in the soa server startup process (starting at line 60 of soa server logfile) the email address is already checked by UMS, the email popped, and deleted. Before any listening app has had the chance to register itself as a listener (like my HttpServlet test app).
    2. Notice that the second email is delivered correctly (starting at line 290 of soa server logfile, the listening HttpServlet responds at line 326)
    3. I seem unable to successfully register a listener before the UMS initialization (using deployment order etc.)
    4. Calling the synchronous receive() method of the MessagingClient also doesn't seem to retrieve the missed message
    What am I missing here? How can I make sure that my app will receive *all* messages sent to an email address, also the ones that are sent during downtime?

    Hotmail is a web based email service and you will need to use the Blazer browser to access the msn home page and then get to your email. You cannot setup a hotmail email account on the device using the email app. You need a POP or IMAP account in order to setup an email account on the Treo, these are usually a fee for service account.
    Post relates to: Palm i705

  • HELP ... Not receiving email messages from particular Yahoo Group

    Ever since the evening of 3/26 every member of my Yahoo Group with an email address from Comcast.net has not been able to reliably receive messages from the group. Out of over 40 emails since then, we've received 4 (2 on 4/1 and 2 this morning). There are no error messages involved, there are just no emails in our inboxes. Yahoo does not indicate that any of the messages have "bounced". The messages are not in my spam folder (in fact, the first Comcast "helper" i worked with had me turn off the spam filter in Comcast,net) Oddly, I (and the others) can receive messages from other Yahoo Groups that we are members of, just not ours: SoundOfNewEngland I was on the phone with Comcast for 2.5 HOURS on 4/3 and was basically told that since I could receive a test message from Comcast that the error must be with Yahoo!   After contacting Yahoo, I was told that since others in the group can receive the messages, that the error must be with Comcast. <sigh> The last email I got from Yahoo said that Comcast would need to add Yahoo info into the Comcast whitelist. I told this to a Comcast technician during a help chat on 4/5 ... and she told me to fill out this form: http://www.comcastsupport.com/sdcxuser/asp/comcast_blockedprovider.asp I did that even tho the issue is that the Yahoo Group's messages were being blocked and I didn't have an IP address for those, but I could provide the domain name:  yahoogroups.com I tried to put the info that Yahoo Groups gave me for the whitelist, but the description is limited to 1024 characters  Needless to say, I have not received a resonse from Comcast within 24 hours of posting the form  Here is the info from Yahoo!: "Since you have already reviewed your settings, and confirmed that the emails are not landing in your spam folder, you will need to follow up with your email provider again, since it appears that they are dropping emails from the group. Email providers generally do this because they think a message is spam, and they are particularly likely to use this approach with bulk messages coming from an email list.
    If you have not done so already, you can provide them with the following link:
    http://tech.groups.yahoo.com/group/ygmailadmin/
    There, they can find a current list of all of our outgoing email servers for white listing.
    They can also contact the owner of this official Yahoo! Group, for further assistance in troubleshooting this issue, by sending an email to:
    [email protected]    However, if your email provider continues to fail to deliver your Yahoo! Group messages, we strongly suggest you consider changing your email provider to another provider who will. This doesn't necessarily mean you need to change your ISP. You can also use a free Web-based email service like Yahoo! Mail or Hotmail while retaining your current ISP." If it helps, the Yahoo incident # is: 120402-011733 It's not a big group, only 86 members. All together we generate maybe 100 messages a month ... not even close to being considered spam.  Most of the members are older and not comfortable with new technology. Asking them to create new emails is not an option.  This group is our primary means of communicating with each other, so the sooner we get this resolved, the less stress for my members! I'm sorry for the length of this message, i'm just trying to provide all the detail i can.  I hope you can help. Thanks,Carol 

    more info: I usually get my mail using Outlook, but the messages are not there when I view them directly on Comcast.net either ....  I'm using Chrome for a browser and have VISTA for my OS Here's a message header from the most recent email sent to the group that I did not receive (i will xxx out the email addresses) at my Comcast address but DID receive at my Yahoo address:
     From Eileen Fri Apr 6 11:56:17 2012
    X-Apparently-To: [email protected] via 72.30.239.82; Fri, 06 Apr 2012 11:56:22 -0700
    Return-Path: <sentto-512785-10246-1333738581-sxxxxxxx1=yahoo.com@returns.groups.yahoo.com>
    Received-SPF: none (domain of returns.groups.yahoo.com does not designate permitted sender hosts)
    bzpwPjwvc3Bhbj48L2ZvbnQ.CgogPC9vOnA.PC9zcGFuPjwvZm9udD4KCiAg
    SWYgd2UgaGF2ZW50IHNlZW4geW91IGluIHlvdXIgdHdvIHBpZWNlCmJsdWUg
    b3V0Zml0LCB5b3VyIGJsdWUgY2hva2VyIGFuZCBlYXJyaW5ncyBhbmQgeW91
    ciBzaWx2ZXIgc2hvZXMsIHBsZWFzZSBjb21lCnNlZSB1cyBuZXh0IFR1ZXNk
    YXkuICBPdXIgc2hvdyBpcyBmYXN0IGFwcHJvYWNoaW5nIGFuZAEwAQEBAQ--
    X-YMailISG: e3e1T3cWLDu.Osw7OOZubcQqoSFUnmYIENQDkbvkbj.f1YSG
    jeAsGCF.2eVO0JR1Ont3IrpMUmJCMBHXwJV6tuJpHB5.LPn7VwqkcfADDoed
    JOpt.3LNoYA23EaFa_OUJb0doF5L55CZJKrWyKutYx3q1ycssiBzIPYq1YRq
    M6NG_VY0ImWBg704ufqziQ.3Y1dS6xtLcUrzsWfqrlj_a8X752hy7fRfHOOI
    OL03MhCTHdMXCd81eu4z36yWv5gYdqwWLvmSjxmXWez67MS5YnOOLiQE2vvJ
    kZqaHBfyJgJvY5boLHYBm5dzwq1b5ymrD.XjqipzCyn.Ly3e_9XMgLO1.d0n
    Zq3qDhV49SvAEuOO4RxU0DXCdJw5gdQfC0qFyPvguMpUd_6Assu__D2Sb7v_
    .Dk1RzStQW2dWjZKZyrAJi8ixfshB9l6JyfbGTI8TjohFgWkbylHw.qPQ7eT
    CB4.S7zJ81hwssFjfk1A2PS4qZo_dlP6j1VkohVKlVx07Q2hOk2BEAl4FdN.
    ltjgDcrFVVz4Ue9Uznv2lzPNjXDqna.BA9cJtVWWRMLUhDN9pLG7CYHmgm_l
    G_4.FHji7x8NuZLgOZKW__lQsWoLLBfZQCEgbsAUyghT7RA9L31QPL2BZcMF
    4nJkstskat7oY244L9yxqA_n.3z_qZjaK9zjqUClMD8FI7QcYvfTq3eXDNPb
    odKsaHP8iUUMrnDaKMh6RE9RmtQx399fT59iDM2djhFiwZMON5570vs4vKTx
    nkJkR_ls_6j85AFGBHxsNd5nBOI0o241qOczrttmahzI08LSCcIH17eaZImm
    9FYLJK606YV9wnY7xA9QAiMfhs7VYi4JSiby6zfpEL9cZwC3XCPW2.8nwiZR
    0BvvZ47rDEzGPJR.kawsSssoqK9xg1ar8zd4O46i_VXvQSMkrlm5PWtAEIGp
    fcVzHsllXBltFn2hqGHPPIKTBqUcQ7jkNbchUQnuYQ3ecbyfd0QnFBl7ufL2
    PrzOKX09XggZs0OUt8iQQtmgE3Zjn8FGw.cyh3eoCNcRoFf9QaPyKTRegA.e
    miJ3O3jckBWROX_kE0Smh9VcVAFLRkZu93BSNDpWsnwp3VqaPxmAVOpsrEPf
    uBEqtMr9RwxD.n8JmAzItxKht0GzNI5Bwf1eK3gerM7bZRxk3lppAmMBWv06
    IrfCL9_EJnFGcGy_lYsz77DGDktIBXCqb_IAx4dVAoTySc700TnINLEQxkVH
    Y32iGH8-
    X-Originating-IP: [98.139.165.5]
    Authentication-Results: mta1260.mail.ac4.yahoo.com from=yahoogroups.com; domainkeys=pass (ok); from=yahoogroups.com; dkim=pass (ok)
    Received: from 127.0.0.1 (HELO ng2-ip9.bullet.mail.bf1.yahoo.com) (98.139.165.5)
    by mta1260.mail.ac4.yahoo.com with SMTP; Fri, 06 Apr 2012 11:56:22 -0700
    DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoogroups.com; s=lima; t=1333738582; bh=sG8gHMXUATS8FPacoEmQj76vBTuNbmLCXaXWAAi6isw=; h=Received:Received:X-Yahoo-Newman-Id:X-Sender:X-Apparently-To:X-Received:X-Received:X-Received:X-IronPort-AV:X-Received:X-Received:To:Cc:Thread-Topic:Thread-Index:Message-ID:Accept-Language:Content-Language:X-MS-Has-Attach:X-MS-TNEF-Correlator:acceptlanguage:X-Originating-IP:X-eGroups-Msg-Info:From:Sender:MIME-Version:Mailing-List: Delivered-To:List-Id: Precedence:List-Unsubscribe: Date:Subject:X-Yahoo-Newman-Property:Content-Type; b=Rm1y/6pBXsTuRSaDcXiCTVvq2gag2bxCn33QtzJ758CZ+3HKtQKe+XN6lTdZpP+/vDm8tdDSIdtzb9KhdtvVWcJXijUMLCdwNCBpJGVkKxX14dHjh2y/SRJ+4lHzbXvh
    DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lima; d=yahoogroups.com;
    b=LDjKTTQnA7I/VM4aeY0zRYwkr8NkUMk8LYaBXfnp3GE2q15fsiVZ5fdkeGROAluMK5ybf06af+JzduWb03vJAnmi71j5m0l5bFNZjgBsy0u55hLT6nXABUubEMgRR51M;
    Received: from [98.139.164.120] by ng2.bullet.mail.bf1.yahoo.com with NNFMP; 06 Apr 2012 18:56:22 -0000
    Received: from [98.137.34.40] by tg1.bullet.mail.bf1.yahoo.com with NNFMP; 06 Apr 2012 18:56:22 -0000
    X-Yahoo-Newman-Id: 512785-m10246
    X-Sender: [email protected]
    X-Apparently-To: [email protected]
    X-Received: (qmail 48751 invoked from network); 6 Apr 2012 18:56:20 -0000
    X-Received: from unknown (98.137.34.45)
    by m4.grp.sp2.yahoo.com with QMQP; 6 Apr 2012 18:56:20 -0000
    X-Received: from unknown (HELO mail02.bmchp.org) (216.57.136.41)
    by mta2.grp.sp2.yahoo.com with SMTP; 6 Apr 2012 18:56:20 -0000
    X-IronPort-AV: E=Sophos;i="4.75,382,1330923600"; 
    d="scan'208,217";a="146119"
    X-Received: from excahtp1.bmchp.org (HELO EXCAHTP1.healthnet.org) ([172.16.100.21])
    by mail02.bmchp.org with ESMTP; 06 Apr 2012 14:56:19 -0400
    X-Received: from EXMBCL1.healthnet.org ([169.254.1.124]) by
    EXCAHTP1.healthnet.org ([::1]) with mapi; Fri, 6 Apr 2012 14:56:19 -0400
    To: "'[email protected]'" <[email protected]>
    Cc: "'[email protected]'" <[email protected]>
    Thread-Topic: fittings
    Thread-Index: Ac0UJvLIs9IpwqtfSy+hSVXx3b26bQ==
    Message-ID: <[email protected]>
    Accept-Language: en-US
    Content-Language: en-US
    X-MS-Has-Attach: 
    X-MS-TNEF-Correlator: 
    acceptlanguage: en-US
    X-Originating-IP: 216.57.136.41
    X-eGroups-Msg-Info: 1:12:0:0:0
    From: Eileen <[email protected]>
    Sender: [email protected]
    MIME-Version: 1.0
    Mailing-List: list [email protected]; contact [email protected]
    Delivered-To: mailing list [email protected]
    List-Id: <Soundxxxxxxxx.yahoogroups.com>
    Precedence: bulk
    List-Unsubscribe: <mailto:[email protected]>
    Date: Fri, 6 Apr 2012 14:56:17 -0400
    Subject: [SONE] fittings
    X-Yahoo-Newman-Property: groups-email-tradh-m
    Content-Type: multipart/alternative;
    boundary="_000_69C23C04D36F874092DCF98593C8DA539D4824864BEXMBCL1health_"
    Content-Length: 7828  Thank you for any guidance you can provide

  • I am receiving email messages but when trying to send a message, it is stuck in the outbox,

    I am receiving email but when trying to send a message, it is stuck in the outbox, never makes it to the sent messages, used to have same problem with Vista on a Dell, have had this Toshiba with Windows 7 since Sept, first time this has happened, need help and thanks, RR

    which computer? which mail program?
    -civicman4-
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Post all info about your laptop and version of windows. We are working on it but still do not have the powers to read your mind.

Maybe you are looking for

  • Bugs in a Powerbook? (the little live creature bugs!!)

    All of a sudden out of nowhere, in my BRAND NEW apartment, bugs have been appearing. And we all know where bugs migrate too, that's right, my glowing powerbook screen (even though I have all the lights on in the room). Now I try and get these buggers

  • 20" display screen now has black border

    My screen suddenly has about a 2" border of black on each side and a 1" black border on top and bottom. Toolbar, desktop picture, etc. all show up as normal. However, I am only able to use about 60% of the screen. In some apps such as Quicken, I can'

  • Installation of the patch 127576-03 for solaris 10 8/07 for Netra T2000

    I am new in Solaris/Unix systems. I need to install a new patch for solaris 10 8/07, which is the 127576-03. I want to read the install information and I have seen in this website, where I downloaded the patch, that the install information is held in

  • Dynamics CRM usage of CRMAF_ filters in sub reports

    Have a main SSRS report which uses CRM pre filtering via the "CRMAF_" prefix, this report calls a sub report which needs to use the same pre filtering as selected and applied via the main report. The sub report is a summary total presenting the infor

  • Miro's power button stopped working

    Suddenly my phone's power button stopped working. I can't lock/unlock the phone nor turn it off :/ Tried to take a screen shot, to restart the device but nothing happened. I dropped the phone only once or twice before months, it hasn't been in touch