How can I establish a line length (72 chars) and get TB to wordwrap at that length?

I would like to establish a line length for email that I compose or receive. How can I do that? How can I get TB to wordwrap at that length and not some shorter length?

I did that - and found several items for wrap.
All except the one noted - mailnews.wraplength - have a status of default, type boolean and value false.
mail.compose.wrap_to_window_width
mail.wrap_long_lines
plain_text.wrap_long_lines
view_source.wrap_long_lines
mailnews.wraplength
status: default
type: integer
value: 72
I promised to be careful, so a last check here - can I change that value to 80 or 50 or something other than 72 without messing up Thunderbird?
Thanks,
Terry_S

Similar Messages

  • How can I use apple mail (linked to gmail) and get it to only do autofill on the contacts that I have in apple address book?

    How can I use apple mail (linked to gmail) and get it to only do autofill on the contacts that I have in apple address book? Everytime I write an email on the Apple mail app (as well as in Gmail) it recommends a bunch of emails that are not my contacts. I want it to just autofill for the contacts that I have in my address book. Is this possible? Thank you. I have an Imac Intel version and an Iphone 5 phone.

    Mail > Window > Previous Recipients

  • I live in Germany at the moment. How can I buy iPad mini with retina online and  get tax free?

    I live in Germany at the moment. How can I buy iPad mini with retina online and  get tax free?

    Do you qualify for a tax free purchase?  The online stores will collect the required taxes for their country and region.  I know in the USA, if you are a tax free corporation, and you purchase it directly with a corporate account, you can get an item tax free using the company account and the corporations registered tax exempt number.  But an individual citizen cannot avoid paying the appropriate required taxes when shopping the online Apple web store.

  • How can I call the jFreeChart to plot graph and get the result in Servlet?

    I want to use jFreeChart to plot time series graph, and then output the result in Servlet. How can I call the jFreeChart to plot graph and get back the result? Any source code for example? Thanks a lot!!

    Dave,
    ServletDemo1 and others were not in the distribution that I got (jfreechart-0.9.4). I found them under the premium demos somewhere in com/refinery/chart/demo/premium, but could not compile. They're complaining, among other things, about missing classes/packages com.refinery.date.SerialDate and com.refinery.ui. Am I using a wrong version of jfreechart?
    Thanks,
    -Alla
    There is a very simple servlet demo in the JFreeChart
    distribution:
    src/com/jrefinery/chart/demo/ServletDemo1.java
    This simply sends back an image to the browser.
    A second demo, which embeds the chart in an HTML page
    is:
    src/com/jrefinery/chart/demo/ServletDemo2.java
    src/com/jrefinery/chart/demo/ServletDemo2ChartGenerator
    java
    ...includes a time series chart as one of three
    options.
    Regards,
    Dave Gilbert
    JFreeChart Project Leader
    http://www.object-refinery.com/jfreechart/index.html

  • Im switching email accounts on my itunes account am the computer isnt recognizing purchases made from my other account on the new one (apps). How can I sign in with my new account and get the purchases apps on both accounts?

    Im switching email accounts on my itunes account am the computer isnt recognizing purchases made from my other account on the new one (apps). How can I sign in with my new account and get the purchases apps on both accounts?

    This was EXACTLY what I needed about the purchases I made from my device. However, is there a way to re-download other ones you've made from a computer? Because I realized some of them were not just purchased from my device.
    This is a picture of what it looks like now:
    http://tinypic.com/r/107quxu/7
    As you can see, the stuff circled in red doesn't give me an option to download from Cloud Beta because it already says "downloaded".
    any way to get around that?

  • How can I add file attachment to my form and get the attachment by email?

    I'm using this code and it works fine, but I don't get the attachment file in the email. How can I add this to my code?
    HTML
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
    <script src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js" type="text/javascript"></script>
    <script type="text/javascript">// <![CDATA[
                  $(document).ready(function() {
                    $("#form1").validate({
                      rules: {
                        first: "required",// simple rule, converted to {required:true}
                        email: {// compound rule
                        required: true,
                        email: true
                      last: {
                        last: true
                      comment: {
                        required: true
                      messages: {
                        comment: "Please enter a comment."
    // ]]></script>
    <script type="text/javascript">// <![CDATA[
    function validate ()
              if (document.form1.first.value == "")
              alert("Please enter your First Name");
              document.form1.first.focus();
              document.form1.first.style.border="1px solid red";
              return false;
              else if (document.form1.last.value == "")
              alert("Please enter your Last Name");
              document.form1.last.focus();
              document.form1.last.style.border="1px solid red";
              return false;
              else if (document.form1.emailaddress.value == "")
              alert("Please enter your Email Address");
              document.form1.emailaddress.focus();
              document.form1.emailaddress.style.border="1px solid red";
              return false;
    function has_focus() {
        if(document.form1.first.value == "")
                                  document.form1.first.focus();
                                  document.form1.style.first.border="1px solid green";
    function set_focus(x)
              document.getElementById(x).style.border="1px solid #80CA75";
    function clear_focus(x)
              document.getElementById(x).style.border="1px solid #DBDFE6";
    // ]]></script>
    </head>
    <body>
    <p><span style="color: #666666; text-align: center; font-size: 13px;">Please complete this form if you have any technical issue.</span></p>
    <form id="form1" action="http://www.southsun.com/php/tech_issue.php" enctype="multipart/form-data" method="post">
    <table style="width: 850px; font-size: 15px; padding-left: 20px; text-align: center;" border="0">
    <tbody>
    <tr>
    <td style="text-align: left; padding-bottom: 20px;" colspan="2">
    <h2><span style="color: #666666;">Please complete this form if you have any technical issue.</span></h2>
    </td>
    </tr>
    <tr style="padding-top: 40px;">
    <td style="text-align: left;"><span style="color: #abaf6f;"><strong>First Name</strong>:*</span><input id="first1" name="first" type="text" />  <br /><br /> <span style="color: #abaf6f;"><strong>Last Name</strong>:*</span><input id="last1" name="last" type="text" /><br /><br /> <span style="color: #abaf6f; padding-right: 33px;"><strong>Email</strong>:</span><span style="color: #abaf6f;">*</span><input id="email1" name="email" type="text" /><br /><br /> <span style="color: #abaf6f;"><strong>Shipping Method:</strong><br /></span> <input name="shippingmethod" type="radio" value="prioritymail" /> Priority Mail                                                                 <input name="shippingmethod" type="radio" value="store" /> In Store Pick up <br /> <input name="shippingmethod" type="radio" value="ground" />  Ground                                                                       <input name="shippingmethod" type="radio" value="3day" /> 3 Day Select<br /><br /> <span style="color: #abaf6f;"><strong>Payment Method:</strong><br /></span> <input name="paymentmethod" type="radio" value="paypal" /> Paypal Method                                                       <input name="paymentmethod" type="radio" value="creditcard" /> Credit Card<br /> <strong><br /> <span style="color: #abaf6f;">If getting an error message, please explain the error:</span></strong><span style="color: #abaf6f;"> <br /></span> <textarea id="errormessage" cols="20" rows="2" name="errormessage"></textarea><br /><br /></td>
    <td style="border-left: 1px solid grey; padding-left: 40px; text-align: left;"><span style="color: #abaf6f;"><strong>If using Paypal, Were you redirected successfully?</strong><br /></span> <input name="paypalredirect" type="radio" value="yes" /> Yes                                                                 <input name="paypalredirect" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>If using Credit Card, Did you get an error?</strong><br /></span> <input name="carderror" type="radio" value="yes" /> Yes                                                                  <input name="carderror" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>What happened after clicking place order? </strong><br /></span> <textarea id="placeorder1" cols="20" rows="2" name="placeorder"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Comments</strong>: <br /></span> <textarea id="comments1" cols="20" rows="2" name="strcomments"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Attach PrintScreen</strong>: <br /></span> <input name="strresume" type="file" />
    <div style="height: 50px;"> </div>
    </td>
    </tr>
    <tr>
    <td style="padding-top: 20px;" colspan="2">( * ) indicates required fields</td>
    </tr>
    <tr>
    <td style="text-align: center; padding-top: 20px;" colspan="2"><input class="button" name="submit" type="submit" value="Submit" />                        <input class="button" name="reset" type="reset" value="Reset" /></td>
    </tr>
    </tbody>
    </table>
    </form>
    </body></html>
    PHP
    <?php
    echo $savestring;
    //--------------------------paramaters--------------------------
    // Subject of email sent to you.
    $subject = 'prueba con uploads';
    // Your email address. This is where the form information will be sent.
    $emailadd = '[email protected]';
    // Where to redirect after form is processed.
    $url = 'http://www.pch-graphicdesign.com';
    // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
    $req = '0';
    $target_path = "http://www.pch-graphicdesign.com/php/uploads/";
    $target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
    $text = "Results from form:\n\n";
    $space = ' ';
    $line = '
    foreach ($_POST as $key => $value)
    if ($req == '1')
    if ($value == '')
    {echo "$key is empty";die;}
    $j = strlen($key);
    if ($j >= 20)
    {echo "Name of form element $key cannot be longer than 20 characters";die;}
    $j = 20 - $j;
    for ($i = 1; $i <= $j; $i++)
    {$space .= ' ';}
    $value = str_replace('\n', "$line", $value);
    $conc = "{$key}:$space{$value}$line";
    $text .= $conc;
    $space = ' ';
    mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    ?>

    Sending a file as an attachment to an email involves setting the correct MIME type and headers. There's a brief tutorial here: http://webcheatsheet.com/php/send_email_text_html_attachment.php.
    Also, you need to use the same name as in your form. In the script you have shown here, the name of the file field is strresume, but your processing script uses this: $_FILES['uploadedfile']['name']. It should be this: $_FILES['strresume']['name']

  • How can I change the number in iMessage send and receive on my iPhone 5c that is gray?

    I recently bought a iphone 5c and when I activate it, the imessage automatically set the number in send and receive, but the funny thing is the number that is registered is my number in another network and is grayed out, How can I change the number to the sim that I'm using in the phone?

    HI,
    As far as I can tell you cannot delete the ID when Only one is listed.
    This would suggest that you have to add the second (Correct) one and then delete the first (wrong) one.
    I can't say I have tried this yet.
    10:43 PM      Thursday; April 5, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can I search a word in a column and erase all the rows containing that word?

    How can I erase all the rows containing a certain word at once?
    Right now I do it manually : I search the word in a certain column with cmd+f, after that it points out where the word is in different rows. And then I manually erase every row but this takes a lot of time when you have 500 row! There must be a way to select all the rows concerned at once and erase them? Thks!

    assuming this is something you don't do very often you can simply use the search feature to identify instances of the search term, and select the row, delete the row then search again.
    The next level would be to add a new column where you identify that the search term exists in a cell of the row, then you sort by the new column:
    B1=IF(IFERROR(FIND("team", A1,1), 0)>0, "FOUND", "")
    my search term is "team" change yours as needed.
    select B1, copy,
    select Column B, paste
    Now sort:
    Inspect the rows to make sure the rows found are REALLY ones you want to remove.  select the ones you want to remove and delete those rows.

  • HT204088 How can i cancel a subscription for an app and get a refund

    Hello
    I have a subscription for Rhapsody and I want to cancel it, I just got charge $9.99 for the new month, yesterday I want to cancel and get a full refund. I cant afford to have the subscription any longer.. I would appreciate any help you can provide
    Thanks
    Maritza Gaitan

    There are instructions on this page for managing and stopping auto-renewing subscriptions : http://support.apple.com/kb/HT4098
    In terms of a refund, all purchases are considered final but you can try contacting iTunes Support and see if they will refund or credit you : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How can we establish an integration between OM,Rec and PA

    Hi Guys
    Could you please let me know
    How we can  establish an integration between
    Oraganizationla module ,recruitment and Personnel adminstration?
    Thanks in advance

    u can see the integration values in table V_T77SO
    u can see it through SM 30
    and the values for OM and PA are PLOGI ORGA make the value as X
    Edited by: Sikindar on Feb 4, 2008 8:25 AM
    Edited by: Sikindar on Feb 4, 2008 9:41 AM

  • How can I establish connection between DirectSoft Programming software and LookOut

    Hi,
            I am working with a DL06 PLC. I am trying to a develop a LookOut Direct HMI for this tainer. I would like to know if there is any option in LookOut where it allows me to run small parts of PLC code along with HMI so that i can toggle discrete output. To be more speicifc i have X0 - 16 input bits and C0 - 16 status bits. I have to develop a logic in PLC programming so that the status bits toggels Y0 - 16 outputs on the tainer. So can you please let me know if there is any way of establishing communication between LookOut HMI and  DirectSoft 32 PLC programming software.
    Thanks
    regards
    Koneru

    Kone,
    Have you tried mathematics.
    I use something like:
    ADec2Bcd      = sum(mod(000,16),mod(trunc(000/16),16)*10,mod(trunc(trunc(000/16)
                    /16),16)*100,mod(trunc(trunc(trunc(000/16)/16)/16),16)*1000);
    Simply replace the 000 with the value to be converted, can be a numerical object.

  • How can I create icloud account which I tried and it has showing the message that multiple free accounts have been activated on this device how should I install icloud and I got from apple support if you have mac then create a new icloud account but I don

    How will have an option to create an icloud id

    Hello there, vishal274.
    The following Knowledge Base article provides a great FAQ that provides some great answers to some of the more common questions about iCloud, including yours:
    Creating an iCloud account: Frequently Asked Questions
    http://support.apple.com/kb/ht4436
    How do I sign up for iCloud?
    You can sign up for iCloud on an iPhone, iPad, or iPod touch with iOS 5 or later, or through System Preferences on a Mac with OS X Lion v10.7.4 or later. Just follow the setup instructions for your iOS device or Mac.
    You may need to verify the email address that you use for your Apple ID. See Frequently Asked Questions About Apple ID for more information.
    I had a free Find My iPhone account. How do I sign up for iCloud?
    Update the devices that you use with Find My iPhone to iOS 5 (iOS 6 recommended). When you're asked to enter an Apple ID during setup, enter the Apple ID you were using for Free Find My iPhone. Your account will be automatically updated to iCloud.
    I had a MobileMe account. How do I sign up for iCloud?
    To use your MobileMe account for iCloud, follow the iCloud setup instructions and enter your @me.com or @mac.com email address as your Apple ID. If you had an @me.com address, it will be reactivated for email when you sign up for iCloud. If you had an @mac.com address, it won't be reactivated for email, but you can set up a new @icloud.com email address to use with iCloud.
    Important: You will need a verified email address associated with your @me.com or @mac.com Apple ID to set up iCloud. To add a verified email address, go to My Apple ID (appleid.apple.com), sign in with your @me.com or @mac.com email address, and add a valid email address to your account.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • How can i empty the table in sub vi and get the same data main vi

    I using a sub vi in my program for many places,but when I run the program for second time i stil have the old information
    someone can help me to resolve this probleme whith a sample
    thank you.
    Attachments:
    Main_Pass.llb ‏30 KB

    Well, obviously you are reading the current content of the table with a property node, then append the new data, making the table in the subVI grow each time it is called. I made a quick modification (see attached).
    btw, I don't see the logic in your overall design. What is e.g. the purpose of the OK button in the subVI?
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    Main_Pass.llb ‏28 KB

  • How can i email apple support people to try and get them to help me fix  problem i have been having

    Hi
    I have an iphone 4 and 3 weeks ago i downloaded and installed the ios 5 software and over that time period I noticed little problems like the sound not working in some apps on my phone and I would have to reboot them completed get it to work and then my wifi would keep dropping in and out and when I was in setting and in wifi option a tick would never appear next to the wifi name it would keep loading and then in my photos I would tap on but it would show another not the one I taped on and then I could not make calls at all and during a call when I hung up it would not end and not go back to home screen so I have restored my iphone but and that had fixed the phone problem but still the other problems are still happening

    That is one run-on sentence.
    Did you restore your iPhone from your iPhone's backup? If so and there is a problem with your iPhone's backup, restoring from the backup will also restore the problems.
    Try restoring your iPhone as a new iPhone or not from the backup to see if this makes any difference.
    If not, Apple doesn't provide support via email. You can call AppleCare if available in your country, or make an appointment at an Apple store if an Apple store is available in your country and there is one nearby, and if not you go through your carrier for support and warranty coverage if needed.

  • How can I download Adobe Photoshop Lightroom 5 Student and Teacher Edition (Mac/Win,English) that I brought in 2013?

    I recently update my computer and need to re-download the software. However I couldn't find anywhere on the Adobe website to download it. Please help.

    I don't know if you can download the specific copy of what you purchased in 2013 but here are links to all the numbered versions ...
    Lightroom - all versions
    Windows
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Windows
    Mac
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Macintosh

Maybe you are looking for

  • How can I get my originals out of aperture?

    Aperture isn't working for me anymore (continuous "database inconsistencies" and other inexplicable crashes that cannot be repaired), so I'd like to switch back to Photoshop. How do I get my thousands of original images out of the library? Do I have

  • Debug RMI - Service with Sun One Studio

    Hi, I'm trying to debug an rmi - service with sun one studio 4u1 (win nt 4.0). To do so I start the rmid daemon via rmid -J-Xdebug -J-Xnoagent -J-Djava.compiler=NONE -J-Xrunjdwp:transport=dt_shmem,server=y,address=dime,suspend=n -J-Djava.security.pol

  • How to intercept Http requests by writing an App Server plugin?

    Hi all, My requirement of "Application Server plugin/filter" is to intercept all Httprequests coming to an Application Server instance (and not webserver), get the related information from the request, do whatever i want to do and then forward the re

  • Deploy failed in weblogic 61(sp3)

    I use following commands to deploy a package to weblogic6.1 server with sp3. It is strange that sometimes it succeeds and sometimes it fails(I do not change anything). D:\bea61\jdk131\bin\java.exe -cp "d:\debug\jclasses\ejbwrapper.jar;D:\bea61\jdk131

  • Witch one should i go with?

    Hey, I'm deciding between to solutions. MBP w. Retina (2,6GHz 16GB RAM 512GB storage) and Thunderbolt Display. Or iMac 27" (3,4GHz 16 GB RAM 1TB storage) and MBP 13" ( 2,5GHz 8GB RAM 500GB storage) I hope you will help me. Thanks! :-)