Problem with utl_smtp


Hi all

I am facing a problem with setting using utl_smtp, question is file BLOB does not as an attachment by e-mail to place the content of the BLOB is embedded in the body of the email. Here are my exact requirement:

(1) send emails with UTL_SMTP

(2) get the BLOB of the fnd_lobs for a sales order table and fix it with the emai

The above obligation, email is going very well for me, the only question I face is with an attachment. Here is the code I use for this requirement:

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

DECLARE

LONG l_to_list;

l_date VARCHAR2 (255) DEFAULT TO_CHAR (SYSDATE, "dd my hh24:mi:ss yy");

l_crlf VARCHAR2 (2): = CHR (13) | CHR (10);

l_profile_value VARCHAR2 (300);

l_from_profile_value VARCHAR2 (300);

l_mailhost VARCHAR2 (300);

l_lemail2 VARCHAR2 (2000);

l_dlimiter_cnt NUMBER (10): = 0;

l_lemail_adr VARCHAR2 (2000);

l_strnl NUMBER: = 0;

l_emailids VARCHAR2 (1000);

l_emailid VARCHAR2 (1000);

l_user_id NUMBER;

l_resp_id NUMBER;

l_resp_appl_id NUMBER;

l_dup_email_exist_cnt NUMBER;

l_recipients VARCHAR2 (4000);

l_subject VARCHAR2 (4000): = 'this is a Test Email ";

l_html_content VARCHAR2 (1): = 'n';

l_mail_conn UTL_SMTP.connection;

l_email_addr VARCHAR2 (50): ='[email protected] ';

l_content VARCHAR2 (1000): = 'Test Email ';

g_crlf CHAR (2) DEFAULT CHR (13) | CHR (10);

l_bcc VARCHAR2 (50): ='[email protected] ';

v_raw raw (57);

V_LENGTH INTEGER: = 0;

v_buffer_size INTEGER: = 57;

v_offset INTEGER: = 1;

l_attach_blob BLOB;

p_filename VARCHAR2 (50): = "QUOTE_REPORT_11122113.pdf";

MAX_BASE64_LINE_WIDTH CONSTANT PLS_INTEGER: = 76 / 4 3;

i                     NUMBER               :=1;

l_boundary VARCHAR2 (50): = '-= * #abc1234321cba #* =';

l_step PLS_INTEGER: = 24573;

l_length PLS_INTEGER;

l_begin PLS_INTEGER: = 1;

l_buffer_size INTEGER: = 75;

l_raw RAW (32767).

BEGIN

SELECT file_data

IN l_attach_blob

OF fnd_lobs

WHERE file_id = 1016452;

dbms_output.put_line ('Content of msg is' | l_content);

--==========================================================

-Assiginh the host dynamically through profile name

--==========================================================

l_profile_value: = fnd_profile. VALUE ("GLOBAL_HOST_NAME");

dbms_output.put_line ('hostname' | l_profile_value);

l_mailhost: = l_profile_value;

dbms_output.put_line ('hostname' | l_mailhost);

--==========================================================

-Assiginh profile dynamically through the email address

--==========================================================

l_from_profile_value: = fnd_profile. VALUE ("FROM_PROFILE");

dbms_output.put_line ('hostname' | l_from_profile_value);

--=================================================================

-Based on the e-mail profile process global value launch UTL_SMTP

--=================================================================

l_mail_conn: = UTL_SMTP.open_connection (l_mailhost, 25);

UTL_SMTP. HELO (l_mail_conn, l_mailhost);

UTL_SMTP.mail (l_mail_conn, l_from_profile_value);

UTL_SMTP. RCPT (l_mail_conn, l_email_addr);

UTL_SMTP. RCPT (l_mail_conn, l_bcc);

-l_to_list: = ' from: '. l_email_addr;

UTL_SMTP.open_data (l_mail_conn);

UTL_SMTP.write_data (l_mail_conn, ' Date: ' |) TO_CHAR (SYSDATE, ' ' DD-MON-YYYY HH24:MI:SS) | UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, ' from: ' | l_email_addr |) UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, ' from: ' | l_from_profile_value |) UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, ' BCC: ' | l_bcc |) UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, ' subject: ' | l_subject |) UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, ' Reply-To: ' | l_from_profile_value |) UTL_TCP. CRLF. UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, l_content |) UTL_TCP. CRLF. UTL_TCP. CRLF);

-UTL_SMTP.write_data (l_mail_conn, ' Content-Type: ': ' text/plain "|") UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, ' Content-Disposition: attachment ;'||) UTL_TCP. CRLF |' filename = ' test po.pdf"' | UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, "Content-Transfer-Encoding: base64' |") UTL_TCP. CRLF);

l_length: = dbms_lob.getlength (l_attach_blob);

l_begin: = 1;

l_raw: = NULL;

l_buffer_size: = 75;

All IN l_begin < l_length

LOOP

DBMS_LOB. Read (l_attach_blob, l_buffer_size, l_begin, l_raw);

UTL_SMTP.write_raw_data (l_mail_conn, utl_encode.base64_encode (l_raw));

UTL_SMTP.write_data (l_mail_conn, utl_tcp.crlf);

l_begin: = l_begin + l_buffer_size;

END LOOP;

UTL_SMTP.write_data (l_mail_conn, UTL_TCP.crlf |) UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) '--' || UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, utl_tcp.crlf);

UTL_SMTP.close_data (l_mail_conn);

UTL_SMTP. Quit (l_mail_conn);

EXCEPTION

WHILE OTHERS THEN

dbms_output.put_line ('Exception occurred' |) SQLERRM);

END;

----------------------------------------------------------------------------------

Ask you to provide your entries as soon as possible.

Thank you

You must add a forward limit of attachment, like this:

UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, ' Content-Disposition: attachment ;'||) UTL_TCP. CRLF |' filename = ' test po.pdf"' | UTL_TCP. CRLF);

UTL_SMTP.write_data (l_mail_conn, "Content-Transfer-Encoding: base64' |") UTL_TCP. CRLF);

UPD: removed extra '-'

Tags: Database

Similar Questions

  • UTL_SMTP - problem with Microsoft Exchange 2010

    Hello

    I don't know if this has already been discussed here, but I have not found a thread about it.

    We use the UTL_SMTP package in our production 10.2.0.4 database to send statistics to the Department. It works very well since we have established the Microsoft Exchange Server 2010.

    The problem is that the mail comes without any content. (it has the wrong title but no content)

    We have already solved another little problem:
    -----
    ->Is the only thing that is different from the old stock exchange, you must declare the complete addresses.

    For example:
    UTL_SMTP.open_connection ("< servername >. (< domain > ', 25);    -the address of the mail server
    or
    UTL_SMTP. RCPT (mail_conn, ' < recipient > @ < domain > '); -delivery address

    Without an address complete (without domain for example name) only the old Exchange (2003) accepts emails. (although course at the internal mail to the domain-communication)
    -----

    So now the mails have arrived, but they have no content. I think there is no problem with using the UTL_SMTP package.

    The new trading system is clustered and now there are two dns entries:

    A tip to a cluster of two-server-aktiv-aktiv "HUB & CASE" that works as a balancer(my simplified sight, it is also called NLB[Network Load Balancing] Cluster) load and sends emails to one of the trees exchange new-db-server or send it to the old exchange server (if the old Exchange is even the owner of the beneficiary-"post office box"!).

    The other dumped at the old exchange server.


    The problem come just in emails with the destination to the new trading system.
    This is no a general problem, because emails since some CLI tools or other programs to the new system which arrive without problem (and with content :-)).)

    I hope someone has an idea.
    We have the same problem when we mail to a recipient whose box is the property of the new Exchange.
    So the problem will be there when we spend our 'post-boites' of the old for the new scholarship.

    Thanks in advance

    Published by: Donein the 06.10.2010 04:00

    Published by: Donein the 06.10.2010 05:22

    Donein wrote:

    Only the second mail have content. The only difference is the additional word wrap after the subject.

    So, if I get the message in my pl/sql code to do this:

    msg_text varchar2(500) := '          --push the enter button :-)
    This is a testmail!';
    

    It works very well. So, at this point, my problem is solved I think but the workaround is not really smart.

    You need to convey what we call a body Mime (Multipurpose Internet Mail Extensions). It comes from "+ parts +". The first part is the e-mail message header. This includes the object, the name of the reader mail that created the mail, the mail message id, since and to the fields, date and so on (which many optional).

    To do a single white as between the parties. If after this part of the header, it must be a blank line. After that the next part can be written - generally the e-mail of the body itself (or one of several parts of the body of the email).

    UTL_TCP.CRLF offers the line of food/empty line required for you. He sample code I posted in {message identifier: = 4593735} that should work against most / all SMTP servers (assuming that the valid addresses are provided) - it also does not attempt to send the body complete Mime parameter via a single command. Open_data(), write_data() , and close_data() calls are used instead. This ensures the best control by separating the different lines and "body parts" of the Mime message.

  • problem with Java mail for oracle 9i

    Hi all
    I want to send messages from the oracle 9i server to my mail server (mail.example.com).
    Please see this link * [http://www.akadia.com/services/java_mail_plsql.htmlbold] * and I try to follow their guidelines.
    Everything is running successfully. The part where it's written on this document "Install Java Code to send emails with attachments. When try to run this code as scott/tiger schema, then I got an error which is in the below:

    ATTENTION: Java created with compilation errors.

    After the words when I ran to see what the problem with the execution of this order "display errors java source 'SendMail'" it's generating error information below:

    error starting
    JAVA SOURCE SendMail errors:

    LINE/COL ERROR
    -----------------------------------------------------------------
    0/0 SendMail:25: class Session not found.
    0/0 SendMail:25: class Session not found.
    0/0 SendMail:25: name of variable or class not defined: Session
    SendMail:29 0/0: MimeMessage class not found.
    SendMail:29 0/0: MimeMessage class not found.
    SendMail:34 0/0: InternetAddress class not found.
    SendMail:34 0/0: InternetAddress class not found.
    SendMail:34 0/0: Undefined variable or class name: InternetAddress
    SendMail:41 0/0: InternetAddress class not found.
    SendMail:41 0/0: InternetAddress class not found.
    SendMail:41 0/0: Undefined variable or class name: InternetAddress

    LINE/COL ERROR
    -----------------------------------------------------------------
    SendMail:48 0/0: InternetAddress class not found.
    SendMail:48 0/0: InternetAddress class not found.
    SendMail:48 0/0: Undefined variable or class name: InternetAddress
    SendMail:55 0/0: InternetAddress class not found.
    SendMail:55 0/0: InternetAddress class not found.
    SendMail:55 0/0: Undefined variable or class name: InternetAddress
    SendMail:60 0/0: msg Variable may not have been initialized.
    SendMail:63 0/0: Multipart class not found.
    0/0 SendMail:63: class not found MimeMultipart.
    SendMail:67 0/0: MimeBodyPart class not found.
    SendMail:67 0/0: MimeBodyPart class not found.

    LINE/COL ERROR
    -----------------------------------------------------------------
    SendMail:79 0/0: MimeBodyPart class not found.
    SendMail:79 0/0: MimeBodyPart class not found.
    SendMail:80 0/0: Class FileDataSource not found.
    SendMail:81 0/0: Class FileDataSource not found.
    SendMail:90 0/0: MimeBodyPart class not found.
    SendMail:90 0/0: MimeBodyPart class not found.
    SendMail:91 0/0: Class FileDataSource not found.
    SendMail:91 0/0: Class FileDataSource not found.
    SendMail:99 0/0: msg Variable may not have been initialized.
    0/0 SendMail:105: name of variable or class not defined: Transport
    SendMail:106 0/0: MessagingException class not found.

    LINE/COL ERROR
    -----------------------------------------------------------------
    0/0 info: 33 errors
    end error

    Even if I try to compile the source file java Oracle database 9i «schema-> Scott-> Source types-> Java Sources»
    But could not compile. There show "status as invalid.

    Please help me

    Published by: André on June 4, 2010 20:21

    Published by: André on June 4, 2010 20:22

    Published by: André on June 4, 2010 20:23

    is there a reason why you need to use JAVA for this? Oracle email can be easily done using UTL_SMTP - I've been using this package for years with great success http://www.oracle.com/technology/sample_code/tech/pl_sql/htdocs/maildemo_sql.txt - running like a charm 9.2

  • problems with, phone, 6, Bluetooth kit, Nissan, after update, for, Rios, 1.0.2

    After the update to ios 10.0.2 - trying to use bluetooth to call my vehicle, it says: "this article is not in your phone book." How can I solve this problem?

    Greetings, joybelino1!

    Thank you for joining the communities Support from Apple! I can't wait to see that you are having problems with your Bluetooth in your car! The good news is that Apple has a great article that will help you with measures to try to resolve the problem. Read this article to gethelp to connect your iPhone, iPad, or iPod touch with your car radio. Even though he talks about problems with the connection, it also has the steps for other questions you may have once connected.

    If you use Bluetooth

    1. Consult the user manual of your car stereo to get the procedure to a Bluetooth device.
    2. On your iOS device, drag up to open Control Center, then press ontwice to turn on Bluetooth and turn it back on.
    3. Restart your iOS device.
    4. On your iOS device, Cancel the twinning of your car radio. On the screen of your car désapparier your iOS device and any other device. Restart your car and your iOS device, then pair and connect again.
    5. Update your iOS device.
    6. Install the updates to the firmware of your car radio.
    7. If you still not connect, contact Apple technical support.

    Have a great day!

  • Anyone having problems with WiFi connectivity after upgrade to Sierra?

    I was wondering if anyone else knows issues with WiFi connectivity since the upgrade to Sierra 10.12? I have not had any problems with connectivity WiFi previously on El Capitan. Now I have regular randomly loose connectivity. My internet is cable and when it is connected I have a 100% connection. My details of iMac and I have used only 10% of my storage.

    No problem with my iphone 6.

    Hello AspDesigns,

    I understand that, since the upgrade to Mac OS Sierra, your Mac seems to have trouble staying connected to Wi - Fi. Fortunately the diagnosis built-in wireless can help identify the source of so much trouble.

    Search for Wi - Fi using your Mac problems

    See you soon!

  • Problems with mail after switching to macOS Sierra

    Hey all

    After having recently upgraded to macOS Sierra, I am unable to read my mail.

    I get the following error every time I check on "Get Mail".

    There may be a problem with the mail server or the network. Check the account settings "*" or try again.

    The server returned the error: Mail could not connect to the server 'pop1.tribcsp.com' using SSL on the default ports. Verify that this server supports SSL and that your account settings are correct.

    What does this error message mean and how can I solve this problem.

    Thank you

    Hi Michael,

    I see your message that you get an error in the mail indicating that there is a problem with the mail server or the network.  To help get this problem resolved, I suggest that you follow the steps below:

    If mail refers to a problem with the mail server, or the network

    Mail will say that it is impossible to connect due to a problem with the mail server or the network. For example, the message may refer to a connection that has expired, or too many simultaneous connections:

    If you are connected to the Internet, but the connection has expired, your email provider might be affected by a discontinuance of service. Contact them or see their status Web page to ensure that their e-mail service is online. Examples of status pages:

    If the message indicates the number of simultaneous connections, too many of your devices is check your e-mail account at the same time. Quit Mail on one or more of your other devices.

    If you are still unable to send or receive e-mails

    1. Make sure that you have installed latest version of the Mac software updates, especially if the problem occurred immediately after the installation of a previous update.
    2. In OS X El Capitan or later version, you can see a status icon and the short error message in the upper right of the Mail window, under the search box. The message may indicate 'Network offline' or 'Connection failed', for example. Click the message to see more details on the issue.
    3. Check your connection to the Mail connection doctor. It might be able to say more on the issue.

    If you cannot send or receive e-mail on your Mac.

    Take care.

  • iMac 27 "mid-2011 - Intermittent problem with CPU fan running at full speed and sleep mode.

    Hello!

    My iMac 27 "has an intermittent problem with the CPU fan runs at full speed. Sometimes it happens at the time when I start it, sometimes only in my session, and sometimes only after a certain time. So does seem to be a problem of "heating".

    Second issue is with the mode 'sleep'. It may occur also at any time, at the start of the iMac, session, or after a certain time. But once he starts to go in mode 'sleep', when I wake up, it goes right back in mode after a few seconds and that it will continue indefinitely until I restart the computer.

    What could be?

    Please help me!

    4ntoine

    Here is my model of iMac:

    iMac 27 "mid-2011 model 12.2

    Intel Core i7 3.4 GHz

    AMD Radeon HD 6970M 1024 MB

    OS X El Capitan 10.11.6
    SMC 1.72f2

    Boot ROM IM121.0047.B23

    reset the SMC

    Reset the management system (SCM) controller on your Mac - Apple Support

  • problem with playing the clash of clans

    I'm having some problems while playing the clash of clans on my 2 mini ipad screen does not seem to meet sometimes as if it was some sort of delay so I have to tap several times in order to use a filter or throw the troops on the battlefield.

    Hi Trinitygr,

    Thanks for posting in the Community Support from Apple! I understand that you are having problems with your iPad screen while playing a game. I like to play games on my iPad and I don't see how this could be a nuisance. I'm happy to offer assistance.

    Are you only had this problem when using the app clash of Clans, or does it happen in all applications? I recommend to start by following the steps described in this article:
    If an application you have installed unexpectedly closes, unresponsive, or does not open

    Take care!

  • I'm having problems with an outdated Apple ID

    I have problems with updating Apps etc in my Apple account because he always asked an obsolete in sign.  How can I change this?

    Hello

    Go down to itunes apple ID Delete page homepage all ID and then add it back back.

    See you soon

    Brian

  • Anyone having problems with the new iPhone LTE connection 7 on Verizon?

    I am now on my iPhone second 7 with Verizon. I had four phones for me and my family. I have now had issues where I have no signal in the same areas where my signal allows to be strong. I can't solve the problem with the activation/deactivation of the airplane and then mode again in normal mode. My phone will rest with no signal for 5 minutes, then going to LTE with three bars. I also had the problem where I had only 1 x signal, while my son standing right next to me has LTE. And he had the same questions, where I'm on LTE and it gets no signal. I use to have LTE where I live and work all the time, now it's spotty at best. Apple has replaced me and my sons iPhones but not luck. Still do. Any ideas or an any other suffering?

    (1) go to settings/cell phone/cellular data Options/enable LTE and select ONLY the DATA. This seems to solve the problem (as a temporary solution) for most of the people affected by this problem. The bad part is your request might not be as clear (since they cannot use the highest LTE signals) and you can make calls and data at the same time. But it does not solve the issue.

    (2) there are rumors (but you didn't hear that from me that we only are not supposed to discuss beta software program Apple in this forum) that the new version of Apple Beta for iOS (which also includes an update of the software carrier Verizon to 26.0) seems to solve this problem. So, there's a light at the end of the tunnel.

  • Problem with some fonts of symbols after the installation of the Sierra

    Hello

    I have recently upgraded the OS on my iMac late 2012 for Sierra, since doing so, I noticed a problem with several fonts.

    All symbolic symbols Apple to Wingdings fonts not correctly displayed in the font book. Apple symbols looks like a standard wheelbase of san, and other symbolic fonts just show as question marks '?' where the images should be.

    In text editing, that I can't even see the symbolic fonts like Zapf Dingbats and Wingdings in the selector. However, they all work well in Adobe Illustrator (CS5) and Microsoft Word 2011. Apple symbols still looks like a standard font.

    I already tried the following:

    1. check the fonts in font book

    2 fix the duplicates in the font book

    3. using the "Restore Standard fonts" option in the font book

    4 deleting a file in the folder Preferences plist Fonts

    5 deleted the cache of police and the database

    I'm out of ideas. Has anyone else had the same problem found a fix?

    Kind regards

    Greville

    I'm just to add that I used the recovery partition to do a clean install of Sierra on a hard drive external and then booted into it to see if it had the same problem.

    And he does. Wingdings and other photo fonts appear as '?' in boxes where the letters must be in the font book.

    So this seems like a problem with the way Sierra displays these fonts, not with the font files themselves.

  • ios10 problem with non-users of iphone messaging

    After upgrading my iPhone 6 ios10, I had intermittent problems with the messaging of Android users (basically, the conversations no iMessage). In about 60% of the time it is not just to deliver the message no matter what I do (pressing the 'Try Again' don't work do not). He has no problem with the reception of the texts, but I can't answer to Android users (Interestingly, I can message users of Android if they are in a group with iPhone users text). I tried everything was updated to the last verision until reset of ios everything.

    I can't find anything online about this. I'm the only one who what?

    Group Messaging uses the MMS. Normal text messages using SMS. SMS uses the voice channel to transfer messages and is strictly a basic function. If you are experiencing problems sending SMS, contact your carrier.

  • I have problems with ios 9.3.5

    my ipod says it's still Friday, September 23 when it is Monday 26 and is stuck in the 04:00 time when I change the time, the screen turns off a color at random, then restarts then both will and I have to change but rest later if it changes at all used to date will not change anything and it runs still works when it wants to and it doesn't stay connected to WiFi , I have the ipod 5th generation and am not elligible for ios 10 Please if you can solve this problem with ios 9.3.5 I would be very grateful as I use my ipod for almost everything. Thanks - René

    It is a community based on the user. You do not speak to Apple directly. You can contact the Apple Support here: http://www.apple.com/ca/contact/

  • I have intermittent problems with iphoto importing from iphone since 0sx 10.11.6. Update

    I have intermittent problems with iphoto importing from iphone since 0sx 10.11.6. -Update

    1 iphoto sees not iphone - restart

    2 iphoto sees iphone but says "no pictures" - restart

    3 Iphoto sees phone and photos and I click Import all or import selected - then I have problem of file format and nothing is imported

    NOTE: I have similar problems with image capture - sometimes you can see the phone and photos, and sometimes is not

    I have an imac 2015 - execution of yosemite

    Help my new iphone because 7 is coming today and I am terrified of the transfer.

    Not sure, but in any case iPhoto is a dead - it would be really smart to learn pictures (a totally new and different program with a learning curve and different workflows)

    With the help of pictures with my new iPhone 7 and iCloud photo library all works well without any problem - nothing different photos with my iPhone except the news and the best quality Photos 5

    LN

  • MacBook Pro 17 "middle 2010 2, 66 GHz Core i7. Problems with CPU and memory.

    EtreCheck version: 3.0.5 (309)

    Report generated 2016-09-26 08:52:41

    Download EtreCheck from https://etrecheck.com

    Time 02:19

    Performance: Excellent

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Problem: No problem - just check

    Hardware Information:

    MacBook Pro (17-inch, mid 2010)

    [Data sheet] - [User Guide] - [warranty & Service]

    MacBook Pro - model: MacBookPro6, 1

    1 2.66 GHz Intel Core i7 CPU: 2 strands

    8 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 4 GB DDR3 1067 MHz

    BANK 1/DIMM0

    OK 4 GB DDR3 1067 MHz

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Battery: Health = Normal - Cycle count = 167

    Video information:

    Intel HD Graphics

    NVIDIA GeForce GT 330M - VRAM: 512 MB

    Color LCD 1920 x 1200

    Software:

    OS X El Capitan 10.11.6 (15-1004) - since startup time: less than an hour

    Disc information:

    SAMSUNG SSD 840 EVO 1 to disk0: (1 TB) (Solid State - TRIM: No.)

    EFI (disk0s1) < not mounted >: 210 MB

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    SSD of Macintosh (disk2) /: 998,97 (Go 117,08 free)

    Storage of carrots: disk0s2 999.35 GB Online

    SAMSUNG SSD 850 EVO 500 GB disk1: (500,11 GB) (Solid State - TRIM: No.)

    EFI (disk1s1) < not mounted >: 210 MB

    SSD500GB (disk1s2) / Volumes/SSD500GB: 499,76 GB (260 MB free)

    USB information:

    Apple Inc. BRCM2070 hub.

    Apple Inc. Bluetooth USB host controller.

    Apple Inc. Apple keyboard / Trackpad

    Computer, Inc. Apple IR receiver.

    Built-in ISight from Apple Inc..

    Guardian:

    Mac App Store and identified developers

    Unknown files:

    ~/Library/LaunchAgents/com. AppBox.AppBox.plist

    ~/Library/application support/AppPolicy/AppBox - i-c 748931 - isn 6A4BB6B7-28E4-416D-BE5C-0AE3D10382ED

    ~/Library/Safari/extensions/SlickSavings.safariextz

    2 unknown files found. [Check files]

    Kernel extensions:

    / Library/Application Support/VirtualBox

    [loading] org.virtualbox.kext.VBoxDrv (5.1.6 - 2016-09-19) [Support]

    [loading] org.virtualbox.kext.VBoxNetAdp (5.1.6 - 2016-09-19) [Support]

    [loading] org.virtualbox.kext.VBoxNetFlt (5.1.6 - 2016-09-19) [Support]

    [loading] org.virtualbox.kext.VBoxUSB (5.1.6 - 2016-09-19) [Support]

    / System/Library/Extensions

    com.olympus.DSSBlockCommandsDevice [no charge] (2.0.0 - 2016-09-13) [Support]

    Launch system officers:

    [no charge] 8 tasks of Apple

    tasks of Apple 155 [loading]

    [running] Apple 76 jobs

    Launch system demons:

    [no charge] 45 Apple jobs

    [loading] 158 jobs Apple

    Apple tasks 87 [performance]

    Launch demons:

    [loading] com.adobe.fpsaud.plist (2016-08-30) [Support]

    [loaded] org.virtualbox.startup.plist (2016-09-19) [Support]

    User launch officers:

    com.appbox.AppBox.plist [running] (2016-09-11) [Support]

    [loading] com.google.keystone.agent.plist (2016-07-12) [Support]

    com.spotify.webhelper.plist [running] (2016-09-18) [Support]

    [loaded] org.virtualbox.vboxwebsrv.plist (2016-09-19) [Support]

    Items in user login:

    Mac Fan Control application (/ Applications/Mac Fan Control.app)

    iTunesHelper application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    Dropbox application (/ Applications/Dropbox.app)

    Plug-ins Internet:

    Silverlight: 5.1.50709.0 - SDK 10.6 (2016-09-22) [Support]

    FlashPlayer - 10.6: 23.0.0.162 - SDK 10.9 (2016-09-13) [Support]

    QuickTime Plugin: 7.7.3 (2016-08-12)

    Flash Player: 23.0.0.162 - SDK 10.9 (2016-09-13) [Support]

    Default browser: 601 - SDK 10.11 (2016-08-12)

    Safari extensions:

    AdBlock - BetaFish, Inc. - https://getadblock.com (2016-05-22)

    QuickBrowse - Catalin Andrei Vasiliu - http://www.unionsoftwareonline.com (2016-04-06)

    Slick savings (2015-10-03)

    EverNote Web Clipper - Evernote Corp. - http://evernote.com (2016-07-23)

    3rd party preference panes:

    Flash Player (2016-08-30) [Support]

    Time Machine:

    Automatic backup: YES

    Volumes to back up:

    Macintosh SSD: Disc size: 998,97 GB disc used: 881,89 GB

    Destinations:

    LaCie 2 TB TC [Local]

    Total size: 2.00 TB

    Total number of backups: 69

    An older backup: 02/09/16 10:58

    Last backup: 22/09/16 21:02

    Backup disk size: too small

    Backup TB 2.00 size < (disc 881,89 GB X 3)

    Top of page process CPU:

    70% callservicesd

    57% findNames

    20% com.apple.WebKit.WebContent (26)

    accountsd 18%

    com.apple.AddressBook.ContactsAccountsService 17%

    Top of page process of memory:

    2.41 GB com.apple.WebKit.WebContent (26)

    649 MB kernel_task

    Safari of 549 MB

    Mdworker (15) 238 MB

    Dropbox 156MO

    Virtual memory information:

    1.62 Go free RAM

    6.37 GB used RAM (2.63 GB being cached)

    Used Swap 0 B

    Diagnostic information:

    26 September 2016, 08:49:12 self test - passed

    September 2, 2016, 20:53:40 /Library/Logs/DiagnosticReports/Kernel_2016-09-02-205340_[redacted].panic [details]

    Files deleted by EtreCheck:

    On 26 September 2016, 08:39:25 - ~/Library/LaunchAgents/com. LiveShoppers.agent.plist

    On 26 September 2016, 08:39:25 - ~/Library/LaunchAgents/com. Software - Updater.agent.plist

    On 26 September 2016, 08:39:25 - ~/Library/LaunchAgents/com.unionsoftwareonline.AppMonitor.plist

    On 26 September 2016, 08:39:42 - / Library/LaunchAgents / com LiveShoppers.agent.plist

    On 26 September 2016, 08:39:42 - Library/LaunchAgents/com. Software - Updater.agent.plist

    26 September 2016, 08:39:42 - ~/Library/Safari/Extensions/Ebay Shopping Assistant.safariextz

    On 26 September 2016, 08:39:42 - ~/Library/Safari/Extensions/Searchme.safariextz

    What are the symptoms you experience that lead you to believe that there are problems with the CPU and the RAM (or is it storage?)?

    Ciao.

Maybe you are looking for

  • Tungston E2 My calander data disappeared from my office.

    My calendar data has disappeared from my office. Hot handheld synchronization does not bring this back. Contact information remain on office as do anniversaries on the calendar in the area of time not at the top of the screen. I have all my data to m

  • OfficeJet 7500 a print in different color

    OS - Mac OS X Yosemite 10.10.1 Printer - Officejet 7500 a E910 We have a problem in print in Officejet 7500 color, the color is different in print. While the printing system Windows, all good id form. How can we solve this usse? Thanks in advance Rug

  • MSTSC/span on only 2 monitors

    I use Windows XP SP3 with a configuration quad-monitor by-side (each 1600 x 1200). Is it possible to connect to a remote computer using remote desktop and extend it on only 2 monitors?

  • I always get a migwiz Windows window at startup. How can I get rid of him?

    Remember - this is a public forum so never post private information such as numbers of mail or telephone! Ideas: You have problems with programs Error messages Recent changes to your computer What you have already tried to solve the problem

  • No sound with headphones

    Hellothe problem is I can't hear any sound from my headphones (they work correctly on another), there is sound coming from the speakers even when I plug in the headphones. Can someone help me? Thank you