Mail 6 DID NOT save my rules and signatures: how do I get the RULES back?

When I had the UNFORTUNATE idea to switch (that is to DOWNGRADE imho) from 10.6.8, the new Mail, among the MANY PROBLEMS IT CREATED TO ME (see my other posts about blocked plug-in messages, etc.), DID NOT care at all about saving my signatures and rules.
I found the signatures as webarchives in user/library/mail/v2/mail data/signatures, and just clicked on each one and did LOTS of TIME CONSUMING copy-paste to CREATE new signatures from within mail preferences.
I wasn't able to do the same for the MANY rules I had.
Also, in the previous Mail, it was possible to simply do a command-f inside the To or Bcc fields to check if I had forgotten someone. Now it is NOT POSSIBLE any longer. Anyone knows ho to re-establish that possibility?
Any help would be appreciated.

I went back to the MUCH BETTER Snow Leopard and I have NONE of the problems I encountered with the windoz-like "lions", I have my fast and perfectly functioning computer and system with 10.6.8

Similar Messages

  • Just got a new macbook pro, it has a password, did not choose any password yet, so how can i get the password back ?

    I just got my MBP, it is a new one. and just found out that my mac has a password. when i tried to instal a new app, it asked me to enter the password.
    what should i do? any help

    But if you bought a new Mac, did someone already run the initial setup procedure for you?  Ordinarily, with a brand new, out of the box Apple computer, at first boot you would have been taken through a series of setup screens, one of which would have had you create an admin account with an admin password.
    If somebody else already did that when you picked it up, then you should call the store and ask them for the password as they must have set it.  Then, immediately change it to something you make up.
    If you did not have the store set it up, then I'd suspect you did not actually get a brand new Mac?

  • ADF and JQuery: How can I get the data back to server listener.

    Jdeveloper 11g Version 11.1.1.2.0
    I use Jquery to draw the signature. How can I get the svgOutput back to my server listener.???
    e.getSource give me the error e.getSource is not function.
    Both of function saveSignatureCapture(which calling from ADF button) and $('#save-output').click(function (event) can not send the the data back to my server listener.
    Thanks.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="dSignature" title="Signature Capture">
          <af:resource type="javascript" source="../resources/lib/jquery/jquery-1.4.2.min.js"/>
          <af:resource type="javascript" source="../resources/js/jquery.drawbox.js"/>
          <af:resource type="javascript">
            var svgOutput = '';
            function saveSignatureCapture(e) {
                var signatureText = $('#drawbox-data').val();
                var source = e.getSource();
                var type = 'saveSignatureCapture_ServerListener';
                var immediate = true;
                var params = {
                    signatureText : signatureText
                AdfCustomEvent.queue(source, type, params, immediate);
            function beginSignatureCapture(e) {
                $('#drawbox').drawbox( {
                    caption : 'This is a caption', lineWidth : 3, lineCap : 'round', lineJoin : 'round', colorSelector : true
                $('#view-output').click(function () {
                    svgOutput = window.open('data:image/svg+xml,' + $('#drawbox-data').val());
                    svgOutput.document.close();
                    return false;
                $('#save-output').click(function (event) {
                    var signatureText = $('#drawbox-data').val();
                    var source = $(document);
                    var type = "saveSignatureCapture_ServerListener";
                    var immediate = true;
                    var params = {
                        signatureText : signatureText
                    AdfCustomEvent.queue(source, type, params, immediate);
                    return false;
            $(document).ready(beginSignatureCapture);
          </af:resource>
          <af:panelStretchLayout id="psSignature">
            <f:facet name="bottom"/>
            <f:facet name="center">
              <af:panelGroupLayout id="pgSignature" layout="vertical">
                <f:verbatim>
                  <div id="divSignature">
                    <canvas id="drawbox" width="600" height="200">
                      <p>Your browser does not support &lt;canvas&gt;</p>
                    </canvas>
                  </div>
                  <br/>
                  <br/>
                  <a href="#" id="view-output">View Rendered SVG Output</a>
                  <br/>
                  <br/>
                  <a href="#" id="save-output">Save Signature</a>
                </f:verbatim>
                <af:spacer width="10" height="10" id="s10"/>
                <af:panelGroupLayout id="pghl14" layout="horizontal" halign="center">
                  <af:commandButton text="Save Signature" id="cbSaveSignatureButtonId" partialSubmit="true">
                    <af:clientListener method="saveSignatureCapture" type="click"/>
                    <af:serverListener type="saveSignatureCapture_ServerListener"
                                       method="#{backingBeanScope.mainBackingBean.saveSignatureCapture_ServerListener}"/>
                  </af:commandButton>
                </af:panelGroupLayout>
              </af:panelGroupLayout>
            </f:facet>
            <f:facet name="start"/>
            <f:facet name="end"/>
            <f:facet name="top"/>
          </af:panelStretchLayout>
        </af:document>
      </f:view>
    </jsp:root>Edited by: user553450 on Sep 17, 2010 4:02 PM
    Edited by: user553450 on Sep 17, 2010 4:13 PM

    Hi Frank,
    Thank you so much for your advice, I got lot of knowledge from your book and articles since I am in transition from forms to JDeveloper.
    By surrounding <af:panelStretchLayout id="psSignature"> with <af:form id="f1">
    Now the following code is work on Firefox, everything fine, I can get the data back and call my server listener as I expected.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" title="Signature Capture">
          <af:resource type="javaScript" source="../resources/js/excanvas.js"/>
          <af:resource type="javascript" source="../resources/lib/jquery/jquery-1.4.2.min.js"/>
          <af:resource type="javascript" source="../resources/js/jquery.drawbox.js"/>
          <af:resource type="javascript">
            function saveSignatureCapture(e) {
                var signatureText = $('#drawbox-data').val();
                alert(signatureText);
                var source = e.getSource();
                var type = 'saveSignatureCapture_ServerListener';
                var immediate = true;
                var params = {
                    signatureText : signatureText
                AdfCustomEvent.queue(source, type, params, immediate);
            function beginSignatureCapture(e) {
                var cmd = "$('#drawbox').drawbox({lineWidth:3,lineCap:'round',lineJoin:'round',colorSelector:true});";
                if (navigator.userAgent.indexOf('MSIE') !=  - 1) {
                    setTimeout(cmd, 1000);
                else {
                    $('#drawbox').drawbox( {
                        caption : 'This is a caption', lineWidth : 3, lineCap : 'round', lineJoin : 'round', colorSelector : true
          </af:resource>
          <af:form id="f1">
            <af:panelStretchLayout id="psSignature">
              <f:facet name="bottom"/>
              <f:facet name="center">
                <af:panelGroupLayout id="pgSignature" layout="vertical">
                  <f:verbatim>
                    <canvas id="drawbox" width="600" height="200">
                      <p>Your browser does not support &lt;canvas&gt;</p>
                    </canvas>
                  </f:verbatim>
                  <af:spacer width="10" height="10" id="s10"/>
                  <af:panelGroupLayout id="pghl14" layout="horizontal" halign="center">
                    <af:commandButton text="Save Signature" id="cbSaveSignatureButtonId" partialSubmit="true">
                      <af:clientListener method="saveSignatureCapture" type="click"/>
                      <af:serverListener type="saveSignatureCapture_ServerListener"
                                         method="#{backingBeanScope.mainBackingBean.saveSignatureCapture_ServerListener}"/>
                    </af:commandButton>
                  </af:panelGroupLayout>
                </af:panelGroupLayout>
              </f:facet>
              <f:facet name="start"/>
              <f:facet name="end"/>
              <f:facet name="top"/>
            </af:panelStretchLayout>
          </af:form>
          <af:clientListener method="beginSignatureCapture" type="load"/>
        </af:document>
      </f:view>
    </jsp:root> However, I got the error following error when I run the page from IE8.
    Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichCommandButton[oracle.adf.RichCommandButton] id=cbSaveSignatureButtonId StackTrace:function(x217)[AdfRichCommandButton[oracle.adf.RichCommandButtonId]..........
    FYI, the following simple testing code has the similar error in IE8 too (not for Firefox).
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:resource type="javaScript" source="../resources/js/excanvas.js"/>
          <af:form id="f1">
            <f:verbatim>
              <canvas id="drawbox" width="600" height="200">
                <p>Your browser does not support &lt;canvas&gt;</p>
              </canvas>
            </f:verbatim>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>The error is: Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichDialog[oracle.adf.RichDialog] id:::msgDlg StackTrace function(x217).......
    Your advice is very much appreciated.

  • URGENT:Accidently copied over code and saved-how do i get the original back

    Hi,
    I accidentily copied over the code of one program, with the code of another & saved.
    Now i can't get the original back!!! What do i do?
    Please help!

    Open the prog in SE38 (in change mode).
    From menu bar- Utilities > Versions
    Select the previous version of code and press RETRIEVE.
    Follow the prompts.
    This ASSUMES that a previous version has been saved/transported.
    If not, you are out-of-luck.

  • I did an upgrade and now i can't get the bookmarks back in Safari like they used to be

    I did an upgrade and now i can't get the bookmarks back in Safari like they used to be. How can I get contacts back in the bookmarks. Also, why does Apple always change everything? Very frustrating.

    Unforunately, not that I know of.
    Apple - Safari - Feedback

  • All the my messages from my phone inbox disappeared.Why did it happen and how should i get the messages back?please help

    All the my messages from my phone inbox disappeared.Why did it happen and how should i get the messages back?please help

    Is the MacBook the computer you have synced with in the past? If not you can use the computer that you have synced with to restore your apps. Are you sure you are using the same Apple ID that you used to purchase the Apps?

  • I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I may be way out, but do you know about this product, would it help integrate the Macs for you.
    https://www.thursby.com/sites/default/files/images/ADmitMacv8_SPD.pdf

  • I have an IPhone 4S. My color pictures and all icons have lost their color. How do I get the color back? Did I touch a wrong button?

    I have an IPhone 4S. All my color pictures and icons turned to looking like a negative.  No color! How do I get the color back on my phone?

    Hi ladwwd56,
    Welcome to the Support Communities!
    Is it possible that you may have an Accessibility feature called "White on Black" turned on?
    See page 244 of the iPhone User Guide PDF:
    http://manuals.info.apple.com/MANUALS/1000/MA1539/en_US/iPhone_iOS4_User_Guide.p df
    White on Black
    Use White on Black to invert the colors on the iPhone screen, which may make it easier to read the screen. When White on Black is turned on, the screen looks like a photographic negative.
    Invert the screen’s colors: In Settings, choose General > Accessibility and tap the “White on Black” switch.
    If that is not the case, try restarting / resetting the iPhone:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    If that does not resolve the issue, refer to page 146 in the iPhone User Guide to Reset All Settings:
    iPhone User Guide for iOS 7
    manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf
    Happy New Year!
    - Judy

  • Ive restored my Ipod nano and the songs that I've already purchased are now not syncing to my device. How do I get those songs back on the nano?

    Ive restored my Ipod nano and the songs that I've already purchased are now not syncing to my device. How do I get those songs back on the nano?

    Either redownload them directly to the iPod by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    or sync them to your iPod via iTunes
    iTunes: Syncing media content to iOS devices and iPod            

  • I hit Forget Network and now cannot get back onto my wireless home network. All of my other computers and iphones are fine.  How do I get the network back?  It shows in my list of networks but when I use the password and try to join it says not connected.

    I hit Forget Network and now cannot get back onto my wireless home network. All of my other computers and iphones are fine.  How do I get the network back?  It shows in my list of networks but when I use the password and try to join it says not connected.

    See if the iPad will accept the password after you restart it. It's worth a try.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    You could also try a reset as well.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • I have a Mac Air. I use the mail application all the time.. The red, yellow, and green buttons disappeared at the top of screen... now i have to force quit mail.. how do it get the buttons back?

    I have a Mac Air. I use the mail application al the time. THe red, yellow, and green buttons disappeard. i have to force-quit now to close mail.. How do i get the buttons back? thanks.

    Mail window may be in the Full Screen mode.
    Move the mouse pointer to the top right corner of the Mail window and hold it there.
    Menu bar should drop down and click the blue double arrow icon.
    Full Screen toggle shortcut:  control + command + F

  • TS1702 My iMessage is only allowing me to select messages to be sent and received from my email. If my number is an option, but it will not let me select my number, how do I get the iMessages to be sent to my number and not my email?

    My iMessage is only allowing me to select messages to be sent and received from my email. If my number is an option, but it will not let me select my number, how do I get the iMessages to be sent to my number and not my email?

    Try ejecting your iphone from iTunes and then close iTunes. Now retry. Hope this helps.

  • Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back?

    Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back? It is only during videos that I previously uploaded off my phone. It loads them and tells me how long they are but when I go to press play it says can not find file. I have restarted my computer, what else can I do?

    Check the information on the song, Right-Click -> Get Info.
    In the fist pane, (Summary), you will see the AppleId (Account Name) that was used to buy the song.
    Be sure to login to use this account to register this computer to play the song
    What I often see, Is that people have many different AppleID, sometime not even knowing it, which is a big problem.

  • I got a new iphone 6.  When I restore my phone from my icloud backup my most recent photos and messages not restored from icloud backup.  How do I get the most recent backup onto my new phone?

    I got a new iphone 6.  When I restore my phone from my icloud backup my most recent photos and messages not restored from icloud backup.  How do I get the most recent backup onto my new phone?

    Hello, Anita.  
    Thank you for visiting Apple Support Communities.  
    I understand that you are wanting to restore your new iPhone 6 from an iPhone 5 backup.  This sounds like the iOS version of your old iPhone 5 may be newer than what was installed on your iPhone 6.  Try going through the steps in the article below.  
    iOS: Unable to restore from backup of a newer device
    I would also check to see the backup dates in iTunes and if the  backup is located on iCloud instead of iTunes.  
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes
    Cheers, 
    Jason H.  

  • I muted the sound while playing angry birds and now I can't get the sound back. I have the sound on ipod, just not with the games.

    I muted the sound while playing angry birds and now I can't get the sound back. I'm fine with ipod, just the games

    If you lose sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

Maybe you are looking for

  • Issues with Hard Drive & Disk Repair

    I keep getting the following when I try to verify my hard drive with the Disk Utility: Volume Header needs minor repair The volume Macintosh HD needs to be repaired. Error: The underlying task reported failure on exit 1 HFS volume checked Volume need

  • My macbook had been stolen how can i get it back?

    my macbook had been stolen how can i get it ? your fast reply will be appriciated

  • HELP! Inbox Keeps Refreshing!

    I have my Mac Mail tuned to my University of Connecticut account. Every time I open the app, I have loads of new emails, because every time the app opens, every bit of mail, even the ones I open before, somehow refresh and become marked as UNREAD. I

  • Client Selection Ability Option in PDF and Web Galleries

    A great improvement for the output section of Bridge would be for selection ability in PDF and Web Galleries. I can send clients a pdf or web gallery that has a checkbox for each image. My clients would be able to check the images they want and click

  • How do I open jpg attachments on my iPad2?

    I am getting email messages showing up with a paperclip in my "in" box, but there is no visible attachment to the message. How do I retrieve the jpg file and view it?