Set message encoding for some resipient

Hi!
I have one resipient, who sends my mail in wrong encoding, can make applescript rule for mail to change all messages from him to right encoding

When you state encoding,are you referring to the font or alignment?
Go to http://developer.apple.com/reference/ScriptingAutomation/
Find the appropriate codes and terminology.It shouldnt be hard
Very simple example:
Tell application Mail
set font style to ....../
set font size ...........
end tell

Similar Messages

  • Is there any way to configure storage queue message encoding for Web Job's QueueTrigger?

    We have a web job that listens to Azure storage queue via QueueTrigger. The queue messages are not encoded when they are added to the queue:
    CloudStorageAccount account = CloudStorageAccount.Parse("...");
    CloudQueueClient client = account.CreateCloudQueueClient();
    CloudQueue queue = client.GetQueueReference("test1");
    queue.EncodeMessage = false;
    queue.AddMessage(new CloudQueueMessage("hello world"));
    And in the web job, we use the below method to listen to the queue.
    public static Task ProcessQueueMessageAsync([QueueTrigger("test1")]string message)
    And the web job crashes when it gets a message, with the below output. Unfortunately we cannot control the encode setting of the coming messages. So, our question is, is there any way to configure queue message encoding for Web Job's QueueTrigger?
    Thank you for any help and/or suggestion.
    Found the following functions:
    WebJobTest1.Functions.ProcessQueueMessageAsync
    Job host started
    Unhandled Exception: System.FormatException: Invalid length for a Base-64 char array or string.
    at System.Convert.FromBase64_Decode(Char* startInputPtr, Int32 inputLength, Byte* startDestPtr, Int32 destLength)
    at System.Convert.FromBase64CharPtr(Char* inputPtr, Int32 inputLength)
    at System.Convert.FromBase64String(String s)
    at Microsoft.WindowsAzure.Storage.Queue.CloudQueueMessage.get_AsString()
    at Microsoft.Azure.WebJobs.Host.Storage.Queue.StorageQueueMessage.get_AsString()
    at Microsoft.Azure.WebJobs.Host.Queues.StorageQueueMessageExtensions.TryGetAsString(IStorageQueueMessage message)
    at Microsoft.Azure.WebJobs.Host.Queues.QueueCausalityManager.GetOwner(IStorageQueueMessage msg)
    at Microsoft.Azure.WebJobs.Host.Queues.Listeners.QueueTriggerExecutor.<ExecuteAsync>d__0.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
    at Microsoft.Azure.WebJobs.Host.Queues.Listeners.QueueListener.<ProcessMessageAsync>d__11.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
    at Microsoft.Azure.WebJobs.Host.Timers.BackgroundExceptionDispatcher.<>c__DisplayClass1.<Throw>b__0()
    at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
    at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
    at System.Threading.ThreadHelper.ThreadStart()
    Press any key to continue . . .

    Hi,
    Thanks for posting here.
    I am not too sure if the storage queue messages can be encoded before the webjob listens to it.
    I am currently researching to gather more information with regards to your request.
    I shall revert back to you with an update at the earliest.
    Sincerely appreciate your patience.
    Regards,
    Shirisha Paderu

  • TS2755 I have deleted almost all of my text messages but for some reason my memory usage still says that i have 3.5 gb of text messages saved. How do i correct this problem?

    I have deleted almost all of my text messages but for some reason my memory usage still says that i have 3.5 gb of text messages saved. How do i correct this problem?

    Good luck finding the solution. I have another posting https://discussions.apple.com/message/25145839#25145839 on this exact same issue, and that is after looking on my own for the solution on the web and on Apple's forum without any luck for a real solution. Having to RESET a device every time I need to clear out old messages from memory sounds to me like an intended pain from Apple to keep pushing iPhone users to purchase additional iCloud backup plans.

  • As a webservice client, how to set character encoding for JAX-WS?

    I couldn't find the right API to set character encoding for a webservice client. What I did is
    1, wsimport which gives me MyService, MyPortType...
    2. Create new MyService
    3. Get MyPort from MyService
    4. Call myPort.myOperation with objects
    Where is the right place to set character encoding and how to set it? Thanks.
    Regards
    -Jiaqi Guo

    The .js file and the html need to have the same encoding. If
    your html uses iso-8859-7, then the .js must also use that. But if
    the original text editor created the .js file using utf-8, then
    that is what the html needs to use.

  • How I set character encoding for everypage and alway?

    I use Thai window 874 open the page when I select some website it contain Thai then click open new tab it change to western windows 1252. It can not display Thai. I must set character encoding to Thai windows 874 everytime.

    Try this:
    Prefrences -> Content -> Fonts & Color -> Advanced
    At the bottom, choose your Encoding.

  • How to set Display Only for some records in CAT2 Worklist

    Hi,
    I have a requirement to modify an attributes for some records in the Worklist of CAT2.
    We have an external system where we book our time. Weekly we import data from that external system into CATSDB using BAPI for every single employee.
    We would like when the user wants to modify his time sheet to be able to add/modify all records except those which were imported from the external system. Which means that those records should be in Display only mode / grayed out / before release.
    Is there any user exit or BADI that could help to modify that attribute and that will be triggered before displaying the Worklist ?
    Please advise !
    Thanks,
    Stefan

    I've solved the problem.
    First I've added customer field in CI_CATSDB structure and when I am importing the data I am populating that field with 'X', which means that this is record from the external application.
    I've created enhancement implementation in Function group->CATS, screen->2003 MODULE->D2000_MODIFY_LOOP, subroutine->modify_d2000_loop where I am checking the field mentioned above if it is 'X' I am modifying the screnn-output = off.
    It works, thak you for your help.
    Regards,
    Stefan

  • Setting message tokens for short tips

    I have a field with a shorttip defined. I want to be able to make the message dynamic, i.e. set message tokens. Is this possible?

    There are two ways of doing this in processFormRequest,
    (1) Easier and not recommended.
    Use the same code that I gave in my previous post, but put it in your processFormRequest. However, note that OA Framework coding guidelines prohibit you from changing web bean properties during processFormRequest.
    (2) Write your custom bound value.
    Write your own bound value implementation extending oracle.apps.fnd.framework.webui.OAAbstractBoundValue. Implement the constructor, and getValue(object) method. In the getValue method, put in your code that recognizes the tip value to be rendered.
    In the processRequest of your controller, attach the above bound value class to the tip property as follows,
    inputFieldBean.setAttributeValue(TIP_ATTR, new <yourTipBoundValueClass>());
    Define the constructor such that you pass in parameters necessary to calculate the tip. Note that the bean on which you are setting the bound value must be sent in as a parameter (inputFieldBean). In the constructor implementation, set this parameter to mOAWebBean which is a public variable defined in OAAbstractBoundValue.

  • Getting different message count for some mail boxes in a particular account

    Hello,
    I am using java mail api in my project.
    I am using two methods
    Case 1 :
    folder.getMessageCount()
    case 2:
    getMessageCount(String folderName){
    int iCount = 0;
    Folder objFolder = store.getDefaultFolder();
    if (folderName != null && folderName.equalsIgnoreCase("") == false) {
    objFolder = objFolder.getFolder(folderName);
    iCount = objFolder.getMessageCount();
    return iCount;
    I am getting different output from both the above cases.
    I have tested both cases on many accounts and they give me same message count. but for one gmail account only they give me different message count for two folders, Inbox as well as Gmail/All.
    Can anyone tell me the reason for this difference.

    Yes, in case 1, i first open the folder and then i call folder.getMessageCount().
    I am using IMAP in both the cases
    as i used Store store = session.getStore("imaps");
    Yes, there is no new mail delivered to the folder when this methods are analyzed.
    i am getting different count as
    imap.getMessageCount() >> First way
    imap.getMessageCount(Bi testing) >> Another way:-
    imap.getMessageCount(Bi testing)--> Count = 4
    imap.getMessageCount()--> Count = 4
    imap.getMessageCount(INBOX)--> Count = 125
    imap.getMessageCount()--> Count = 117
    imap.getMessageCount(Personal)--> Count = 11
    imap.getMessageCount()--> Count = 11
    imap.getMessageCount(Receipts)--> Count = 6
    imap.getMessageCount()--> Count = 6
    imap.getMessageCount(Travel)--> Count = 36
    imap.getMessageCount()--> Count = 36
    imap.getMessageCount(Work)--> Count = 2
    imap.getMessageCount()--> Count = 2
    *imap.getMessageCount([Gmail]/All Mail)--> Count = 180*
    imap.getMessageCount()--> Count = 161
    imap.getMessageCount([Gmail]/Drafts)--> Count = 0
    imap.getMessageCount()--> Count = 0
    imap.getMessageCount([Gmail]/Sent Mail)--> Count = 40
    imap.getMessageCount()--> Count = 40
    imap.getMessageCount([Gmail]/Spam)--> Count = 0
    imap.getMessageCount()--> Count = 0
    imap.getMessageCount([Gmail]/Starred)--> Count = 0
    imap.getMessageCount()--> Count = 0
    imap.getMessageCount([Gmail]/Trash)--> Count = 15
    imap.getMessageCount()--> Count = 15
    In this two folders Inbox as well as [Gmail]/All Mail showing different counts when used on both methods.

  • Setting character encoding for the whole app

    I have a MySQL base which uses latin1 character set. I don't know which Java uses, but when I print some polish signs it puts ? instead. How do I change the character set for the whole application? Or maybe there is some completely different way?

    1. the base I have is capable of storing polish chars - at least when I view it within my visual manager it shows then no problem, so I think it's not that
    2. I don't use the console - I use the JTable component to show the data
    3. java stores using utf, but the app uses default system encoding - I checked it with:
    Charset c = Charset.defaultCharset();
    System.out.println(c.displayName());So which solution do you suggest?
    And how can I change the encoding the application?
    Thank's for your interest!

  • Setting text encoding for Flash when being used

    Many Korean web sites use Flash, and many of them are made in
    the text encoding "windows Korean"
    when I use windows it shows those sites as intended because
    the text encoding of flash player in windows is set to "windows
    Korean"
    but on my mac, I believe Flash player uses UTF-8 regardless
    of my web browser setting and many Korean Flash web sites don't
    work as intended.
    Is there something I can do to make them show windows-Korean
    encoded characters? Any suggestion appreciated. Thank you.

    Ok, thank you. I gave up trying to understand html right around when the "blink" tag came out, and I just get paranoid every time I do a reinstall that I'm missing some critical part. I like the validator-- never knew about that.
    Now, if you do a search on the source code for that ETToday page, somewhere far down you'll come to another section that reads:
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=big5">
    blah blah blah
    This does appear to be properly formatted, and maybe it's there specficially for English-default browsers. However, perhaps neither Safari nor the validator are picking up this, or maybe it's referring to something else altogether?
    thanks,
    dave

  • How to set message id for JMS

    Hi All,
    I set up the JMS connection with JBoss, and send the message asynchrously to JBoss successfully.
    But right now, Jboss need to use the incoming message ID as correlation ID in Jboss.
    How could i set the message id from payload (not PI message ID, not PI Conversation ID) for JMS receiver adapter?
    thanks a lot
    already check the following links:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5059f110-0d01-0010-7c8b-fdc983be70c0
    Re: jms message id in jms sender channel
    JMS Correlation ID
    XI JMS mq series correlation id
    cannot find any about set JMS Message ID from payload
    Edited by: Lawrence on Dec 24, 2009 2:21 PM

    Hi Lawrence,
    I am not sure how jboss will store message,But i had done similar requirement but my system is MQ,Standard JMS adapter not supports to chnage the value or set mesage id in MQ,we can change the PI Message ID Value but not JBOSS/MQ Message ID.
    Writng module is the one option.
    Regards,
    Raj

  • Midi/browser playback problem with Audigy 2 platinum (Cannot set Default Device for some reas

    Currently I'm having problems playing back mid files in Mediaplayer and various other default programs. I can play midifiles in Winamp by setting it to the proper Directsound device. However in control panel/sound setup (MIDI music Playback), It only lists the MIDI Out Devices instead of the playback one and is defaulted on BLANK when I enter it. I have a feeling this is the main problem.
    DX Diag plays back the midi fine. I have tried reinstalling the latest drivers and the drivers from the disc with no luck at all. Also the default language has been stuck on Japanese as well. I have no idea why it started doing this but it seems to also affect any sound playback in my web browsers since I don't even get sound from any Flash files or Google video.Message Edited by zoglog on 06-23-2006 :38 PMMessage Edited by zoglog on 06-23-2006 :38 PM

    Ok, well I did a clean sweep and clean reinstall of the drivers that fixed my language problem. However I cannot get the proper "Midi music playback" Default Device. Whenever I change it to something it reverts it to a blank no matter how many times I change it or uncheck "Use only default devices"
    It does the exact same thing for "Voice playback"
    I'm not sure if this is related but I don't get any sound from any web-browser Shockwave flash files.
    This is really starting to get fustrating. Any help input would be greatly appreciated. I think the worst part about this is I know the midi works, it just won't let me assign the device....
    Oh yeah, also even if I set the "place volume icon in taskbar" option in the sound and devices properties it wll not show. Not sure if this is related...Message Edited by zoglog on 06-23-2006 :44 PM

  • Set character encoding for data template xml output

    Hello everyone, in my data template, I have defined the header as
    <?xml version="1.0" encoding="WINDOWS-1256"?>
    but when output is generated, it is returned as:
    <?xml version="1.0" encoding="UTF-8"?>
    Is there a way for me to force the WINDOWS-1256 encoding in my data template?
    Many Thanks

    This data is read as
    bytes then I am using the InputStreamReader to convert
    to UTF-8 encoding.Don't you mean "from UTF-8 encoding"? Strings don't have an encoding, bytes can. And do you know that SQL Server produces those bytes encoded in UTF-8, or are you just assuming that?
    The stream is then written to a file with the
    extension ".xml". When I go and open the file, I get
    errors stating that the characters were not
    recognized.When you open the file with what? And what errors do you get?
    However, when I open the file with
    Notepad, I can see my xml data.

  • Setting AddOn Mandatory for some users.

    Hello,
    Currently from the AddOn Manager Pannel i'm able to set an AddOn mandatory or manual, but if its set mandatory then its for all users. Is it possible to make an AddOn Mandatory for selected users? if yes, please help me on how to do it.

    Hi
    Its very easy to do follow this step :
    Admin-- Addonnsaddonn administrationuser preference---select the user and give the preference to that user for Addonn.
    Giri

  • Rate-limit for some MAC on aironet 1231

    Hello!
    I need to set rate-limit for some mac addresses on access point aironet 1231.Is it possible?
    If no, what ios or devices can do it?
    Thanks.

    No there is no option for rate-limit in Aironet but in controller, Rate-limiting is applicable to all traffic destined to the CPU from either direction (wireless or wired). Cisco recommends that you always run the controller with the default config advanced rate enable command in effect in order to rate-limit traffic to the controller and protect against denial-of-service (DoS) attacks. You can use the config advanced rate disable command to stop rate-limiting of Internet Control Message Protocol (ICMP) echo responses for testing purposes.

Maybe you are looking for

  • Open Orders and COPA Cube

    Hi, I have a specific requirement, where we want to add open orders from sales to the existing COPA cube and also we want Existing Open order/sales pipeline reports in SAP to be moved into BI. Can any one help me on how to go about this and what shou

  • Can't get Dualview on FX5700TD128

    I have a FX5700 TD128 w/ DVI and SVideo Out. I connect my TV to the card, it gets detected but I can use only single display - my monitor or my tv at one time. If I choose TV, I get picture on my TV, but the monitor goes to stand by. WindowsXP also s

  • Repeating Frame leaves blank area on next page before record

    I have a report with multiple repeating frames. Near the bottom of the first page the last repeating frame starts to print. If there are too many records to fit on the first page, they show up on subsequent pages. That is OK. However, on the 2nd, 3rd

  • Problem with Photoshop 4.0 Windows

    Hello, I am here to ask for a resolution to a problem related to Photoshop Elements 4.0 Three years ago I bought a Wacom Graphics Tablet Intuos series It came with a free registered software CD for Photoshop Elements 4.0, in which I installed it and

  • Reports Migration

    Hi How to convert ver 2.5 Report to Reports 6i. Thanks Krishna