How to set the background colors of different message by account?

I have two email accounts (let's say a private one for companies) in Thunderbird. Sometimes I (wrongly) mail on the wrong account. That is, I read some messages in a single account, followed by reading in the other account. I hit 'empty' to send a message and be sure to make sure I'm in the right account, that I want to mail to. Every now and then post to the wrong account, get the name wrong 'sender' and I ' answer to "name of the message.

I looked at the account settings and found I can change the background color (in the e-mails triggered and and sent in the mail while composing). I changed the background color in a SINGLE account (in light yellow) and expects the other account be unchanged (white). Not the case. Change the background color in the account for a single account settings changes the color in all accounts (both).

It is unexpected and unwanted, and my problem is still there.

There is an add-on that accounts of color coding and records:

https://addons.Mozilla.org/en-us/Thunderbird/addon/account-colors/

and also the modules allowing to choose the correct identity:

https://addons.Mozilla.org/en-us/Thunderbird/addon/identity-Chooser/

https://addons.Mozilla.org/en-us/Thunderbird/addon/correct-identity/

http://chrisramsden.vfast.co.UK/3_How_to_install_Add-ons_in_Thunderbird.html

Tags: Thunderbird

Similar Questions

  • How can set the background color of the status bar?

    Quote from the old forum:

    Comments: comments
    How can set the background color of the status bar?
    Posted the: July 17, 2008 02:56
     
    How can set the background color of the status bar?
    Using this code for the status bar:
    LabelField statusField = new LabelField ("Good Morning", LabelField.USE_ALL_WIDTH |) LabelField.NON_FOCUSABLE | LabelField.HCENTER)
    {
    int _backgroundColour = Color.LIGHTGREEN;
    public void paint (Graphics g)
    {
    g.setBackgroundColor (Color.RED);
    g.Clear ();
    Super.Paint (g);
    }
    };

    Font defaultfont = Font.getDefault ();
    Police smallfont = defaultfont.derive (Font.PLAIN, 12);

    statusField.setFont (smallfont);
    setStatus (statusField);

    When I ran the code you have above, my status background color was red.  Is not what you see?  If so, please provide the BlackBerry model and software version that you are testing.  You can find this under Options.

    Or if you try to do something else, please provide details.

    I tested this in the BlackBerry Simulator included with version 4.5.0 BlackBerry JDE (4.5.0.44).

    To do this in version 4.1, first call getColor and save the current color.  Then call setColor, setting the color to the color you want to use for the background.  After this call call fillRect, starting with 0, 0 and go to the size of the field (use this.getWidth () and this.getHeight () to get this).  This must fill in the field with your specified color.

    To allow the drawing of the default content of the field call setColor once again, passing in the original color, then call super.paint.

  • How to set the background color of a page_item?

    I was pasting "background-color: #5CD65C" in a number of places, like the 'attributes of the HTML table cells' under the label and the tabs of the item, but get no results. Can someone tell me how to set the background color of a cell, please?

    Hi Doug,.
    One method is to add a style to your header html in page attributes, if you add the below css styling and the change of the name of the item page (#P2_FIRST_NAME) to your he should style correctly:

    Thank you

    Paul

  • How to set the background color of an application in bbui.js?

    How can I set the background color of an application that uses the bbui.js?

    his does not work just to put a:

    body {
        background-color: #000000;
    }
    

    It is even easier than... just create the style or the class on your screen

  • How to set the background color of the title?

    Generally, the title background color is black and the other area of the main screen is white. I want to set the background color of the linear gradient background as blue or something. I try the following 2 ways, but there is always a black line at the bottom of the title bar.

          Background background = BackgroundFactory
                    .createLinearGradientBackground(0x00ff0000, 0x00ff0000,
                            0x0000ff00, 0x0000ff00);
            LabelField title = new LabelField("Hello World Demo",
                    LabelField.ELLIPSIS | LabelField.USE_ALL_WIDTH);
            title.setBackground(background);
            setTitle(title);
    
           LabelField title = new LabelField("Hello World Demo",
                    LabelField.ELLIPSIS | LabelField.USE_ALL_WIDTH);
    
            HorizontalFieldManager hrzManager = new HorizontalFieldManager() {
                protected void paintBackground(Graphics graphics) {
    
                    graphics.setBackgroundColor(0x00382B79);
                    graphics.clear();
                    super.paint(graphics);
                }
            };
            hrzManager.add(title);
            setTitle(hrzManager);
    

    Hello

    I think that there may be a problem using the default setTilte() method.

    Have something by default, behavior with the device.

    It may be a way to customize the default title to remove the black line at the bottom of the title bar.

    But I suggest an alternative that will behave like the title bar without using the setTitle() method.

    You can use something like below to get your condition.

    import net.rim.device.api.ui.*;import net.rim.device.api.ui.component.*;import net.rim.device.api.ui.container.*;import net.rim.device.api.system.*;
    
    class TestScreen extends MainScreen{
    
        private VerticalFieldManager verticalManager;    private HorizontalFieldManager hrzManager;
    
        TestScreen()     {            super(NO_VERTICAL_SCROLL);
    
            LabelField title = new LabelField("Hello World Demo",                        LabelField.ELLIPSIS | LabelField.USE_ALL_WIDTH);
    
            hrzManager = new HorizontalFieldManager()         {            protected void paintBackground(Graphics graphics)             {                graphics.setBackgroundColor(0x00382B79);                graphics.clear();                super.paint(graphics);            }        };        hrzManager.add(title);        this.add(hrzManager);
    
            //rather than  adding component in the mainScreen        //add components in this verticalManager and then        // add this manager to mainScreen          verticalManager = new VerticalFieldManager(Manager.VERTICAL_SCROLL | Manager.VERTICAL_SCROLLBAR)        {            /*              public void paint(Graphics graphics)            {                graphics.setBackgroundColor(0x00ffffff);                graphics.clear();                super.paint(graphics);            }            */                        protected void sublayout( int maxWidth, int maxHeight )            {                int width = Display.getWidth();                int height = Display.getHeight() - hrzManager.getHeight();
    
                    super.sublayout( width, height);                setExtent( width, height);            }        };
    
            ButtonField button1 = new ButtonField("Button1");        ButtonField button2 = new ButtonField("Button2");        ButtonField button3 = new ButtonField("Button3");        ButtonField button4 = new ButtonField("Button4");        ButtonField button5 = new ButtonField("Button5");
    
            verticalManager.add(button1);        verticalManager.add(button2);        verticalManager.add(button3);        verticalManager.add(button4);        verticalManager.add(button5);        this.add(verticalManager);
    
        }}
    

    Concerning

    Bika

  • How to set the background color for the Webworks Menu?

    Hi all

    I have developed a web application that uses the emulator to ripple and Blackberry Webworks SDK 2.3.1.5.In I added the Menu items on the Blackberry Menu button... It works well... It contains the background color by default for Menu (Black)... Here, I want to change the background color of the Menu... Please help me to change the background color... Thank you very much..

    With respect,

    Marimuthu_P

    I don't think that this is possible.  The WebWorks API allows you to add menu items to your application does not provide the ability to change the background color by default of the menu.

    This API is actually an extension of Java built into the SDK WebWorks.  The source code because it's open source, available here: https://github.com/blackberry/WebWorks/tree/master/api/menu/src/main/java/blackberry/ui/menu

    It is based on the Java class "MenuItem", which as you can see it does not provide methods or properties to set the color:

    http://www.BlackBerry.com/developers/docs/7.1.0api/NET/rim/device/API/UI/MenuItem.html

  • How to set the background color to the Manager?

    I'm working on JDE 4.2.1

    I have a HorizontalFieldManager with fields like this.

    HorizontalFieldManager titleManager = new HorizontalFieldManager (HorizontalFieldManager.FIELD_HCENTER);

    Bitmap image = Bitmap.getBitmapResource("images/test.png");
    BitmapField myBitmapField = new BitmapField (image);

    titleManager.add (myBitmapField);

    titleManager.add (new LabelField ("Documents"));

    MY requirement is to have the background color as blue titleManager. This titleManager is inside another Director.

    If I want to customize, how can I do it?

    Thanks for any help.

    crush paintBackground
    use graphics.setColor and graphics.fillRect to paint you like.

  • How to set the background color in a scene?

    I'm new to JavaFX and just started my first program of FX.  I created a FX 7.3 NetBeans project and the project runs correctly.   All the samples in the JavaFX samples download work as well.  But when I try to do something as simple as the definition of the background on my first stage color to black, I can't make it work.  I find examples and documentation telling me that what I do should work, but it's not.

    Scene = new scene (root, 300, 250, Color.BLACK);

    scene.setFill (Color.BLACK);

    primaryStage.initStyle (StageStyle.UNDECORATED);

    primaryStage.setTitle ("Hello World!");

    primaryStage.setScene (scene);

    The two lines "BOLD" are marked as errors.  Unfortunately, I can't find a way to copy the error popup text in the IDE, so I'll summarize.  The two lines are errors that say that I gave a color but paint was expected.

    Is there something that I am missing? Can it be this hard set a background color in JavaFX?

    Thank you.

    Hello. Choose your imports. You probably

    import java.awt.Color;
    

    Instead of

    import javafx.scene.paint.Color;
    
  • How to set the background color of header in a datagrid control spark

    I searched high and low for an answer to what should be a simple question.  I want to change the background color of just the area of my datagrid column header.  I think it must be done in a custom skin that I created but I can't figure out what to do next. I created the custom button, panel skins and changed without problem background colors.

    Any help would be gretly apreicated.

    I posted a complete solution and a demo with the code on ramblingdeveloper.comexample.

    The direct link to the article is HERE.

    The link to the demo and the source is HERE.

    I hope this helps you with your problem.

    -Mike

  • How to set the background color for the HTML text field

    Hello

    Please don't me flame for this question is a bit off-topic. I would like to indicate to the end user that a field is mandatory. Using the name field * rating is good, but end users require a somewhat more tentative approach, they would like to have a light blue background for required fields.

    Is there a HTML attribute for the text fields to achieve? Thanks in advance.

    Tamas

    Hi Francine,.

    Try this

    Click your text box
    Select the ELEMENT property tab
    then choose the property attributes of HTML form elements give this code

    style = "" background: #0000FF ' "

    This will show the Textbox with blue background
    You can give any color by changing the #000000 to #FFFFFF

    Thank you
    Mark Wyatt

  • Set the background color of the screen?

    someone knows how to set the background color for a screen?

    Also see this article.

    How - to change the background color of a form

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800256/...

    Concerning

    Bika

  • How can I set the background color for a photo book to be between photos as well as on the perimeter?

    I am trying to create a book in iPhoto. I can set the background color, but it doesn't seem to work between photos that appears white by default. How can I make the background color of work between photos?

    You can not

    but to see exactly what you always get an overview of your book before ordering

    LN

  • How to set the background Transparent

    Hi all

    I'm very new to blackberry development, can someone tell me how to set the background transparent.

    Thank you

    Kishore P.

    Use this code:
    VFM VerticalFieldManager = new VerticalFieldManager () {}
    //...
    }
    vfm.setBackground (BackgroundFactory.createSolidTransparentBackground (Color.COLOR_YOU_LIKE, 0));

  • Set the background color of af: SelectOneChoice

    Hi all

    I use Jdeveloper 11 and I have an af:SelectOneChoice in a table.
    According to the value selected on the af: SelectOneChoice I want to set the background color.

    I now have this style as the content property:
    contentStyle = "#{row.priority == 9?' background-color: Red;': ' background-color: White ;'}}"

    When the priority is 9, then the color is red, otherwise it is white.
    It's works well but I want to extend this by assigning the Orange color when the priority is 8 or 7.

    How can I do?

    Well I did it using nested condition and it works.
    Sorry that I have copy paste directly from my code but I'm busy:

    value="#{ (row.bindings.ToKont.inputValue == 'N') ? globalParams.storedText[206]:((row.bindings.ToKont.inputValue == 'Z') ? globalParams.storedText[304] : globalParams.storedText[207]) }"
    

    Good luck :)

  • Setting the background color of the element

    How I change the background color of a text element?
    Is there an item property that I can put with an HTML tag?
    If the answer is "Yes", if you please tell me exactly how to set it.
    I can do the same for the bottom of the page?

    Also, is there a web page that allows you to see all the available colors and tells you what the exact code for this color, so you can specify it in an HTML tag?

    And what is the procedure to change all text in the same color of the background of a sudden?

    The following CSS rule to the selected location:

    input[type="text"] {
      background-color: #cf6;
    }
    

    but note that there are [no support for this in IE6 and below | http://reference.sitepoint.com/css/attributeselector].

Maybe you are looking for

  • Time Capsule as Access Point

    I have posted another question about TC but be as well that at the same time. I use Yosemite on an iMac and I have a TC of 2 TB. My modem/router is an Orange Livebox (I live in France) I'm trying to do my Act TC as an AP but hard to do things. Basica

  • Tecra M9: Dynadock Error Message - CmEyeDialog

    Whenever I have my Tecra M9 to the Dynadock dock I get an error message window will appear.The message is ' TODO:? ' and there are two buttons to choose.The two buttons are labeled '? I choose one or the other and the window closes. I can't say there

  • cannot install / deploy image on T5810

    I'm trying to run an image on a new T5810 precision using dell direct image and installation just a USB key with my picture on it files. It crosses the col 1 & 2 and then when I wait for it to restart and finish the installation and unzip all the dri

  • BlackBerry Smartphones Email Contacts

    I know there is a way to add the contact e-mail addresses while writing an email on blackberry Messaging site. There must be, and I guess it's related to your contacts on your phone.

  • Displaying lines in columns

    Given these data:Select * from the candidate.CANDIDATE_ID CANDIDATE_NAME------------      --------------1 Donald Trump2 Hillary ClintonSelect * from candidate_experience;CANDIDATE_ID EXPERIENCE_ID EXPERIENCE_DESC------------  ------------- ----------