Questions tagged [mta]

Multiple Threaded Apartment of the Component Object Model (COM), as opposed to STA

MTA refers to the Multiple Threaded Apartment of Microsoft's Component Object Model (COM). Its opposite is the Single-Threaded Apartment (MTA), but there is also a Neutral Apartment.

Related tags:

References:

110 questions
1
vote
3 answers

Is possible having two COM STA instances of the same component?

I had a problem discovered on another thread here, I need to access a COM component that is STA. I'll run it on a dual-core computer, a process using this component only reaches 50% of CPU. Unfortunately, the owners said they can't change the…
Victor Rodrigues
  • 11,353
  • 23
  • 75
  • 107
1
vote
2 answers

STA or MTA for indirectly used COM Objects

I think I understand the apartment concept and why STA or MTA is used, however a question came up for which I found no solution so far. If my application uses COM Objects under the hood, for example from third party libraries, how do I know if I can…
DanielG
  • 1,217
  • 1
  • 16
  • 37
1
vote
1 answer

Sample OPC client with STA and MTA

Where to find the information about COM threading model used for the OPC client, as part of OPC lab certification process I have to verify that OPC client can be implemented using different COM threading models like Single Threaded Apartment (STA)…
1
vote
1 answer

ASP.NET Web Api with COM dll

I have ASP.NET Web Api project where I need to use VB6 Com dll. I have one controller, where I create object of class from com dll and use that object in my action. Everything seems to work when I call that action from ca. 2000-2500 threads, but…
Bartosz Bialecki
  • 4,391
  • 10
  • 42
  • 64
1
vote
1 answer

Send email with c program in Mac OS X using MTA.

The problem: Failed to invoke sendmail: Invalid argument The code #include #include #include int add(char* to,char* from,char* subject,char* message) { int retval = -1; FILE *mailpipe = popen("/usr/lib/sendmail -t",…
yanko-belov
  • 503
  • 2
  • 6
  • 15
1
vote
1 answer

Receive and process email without running own SMTP server

Trying to put together this: Trigger Google Apps Script by email with this: Custom Incoming Mail Domain With Google App Engine So that ultimately we can process emails to a scalable inbox @ourgoogleappsdomain.com. Google apps accounts slap a limit…
djechlin
  • 59,258
  • 35
  • 162
  • 290
1
vote
3 answers

Security implications of a limited function server

I want to collect certain information from people/devices via email. These emails will never be delivered to anybody, but simply processed on the server. Received emails will be processed - some simply dropped, most stored (in a database),…
Richter
  • 627
  • 6
  • 13
1
vote
1 answer

MTA for windows to use for PHP Sendmail

I was trying to setup Processmaker on my Win7 system. For sending Email I want to use PHP's Sendmail(). But for that I need to install some MTA on my machine and need to configure php.ini for it. Can someone please guide me on MTA thing. I am…
1
vote
3 answers

Monitor Postfix Server and Ruby response on Ubuntu

I am building a ruby application that grabs emails sent to a server and logs them to a database. Right now I don't have is a way to fully test the (Email -> Ruby -> Database) stack for downtime. I am using services that test the server the ruby is…
Schneems
  • 14,918
  • 9
  • 57
  • 84
1
vote
3 answers

STA, MTA and OLE nightmare

I have to include a .NET application into another .NET application as a plugin. The plugin interface requires me to inherit from a template form. The form is then attached in a MDI when the plugin is loaded. Everything is working so far, but…
xsl
  • 17,116
  • 18
  • 71
  • 112
1
vote
1 answer

Best solution for managing email-related application on a LAMP stack

We are working on a web application written in PHP where the following needs to happen: 1) Users at signup are given a unique email address by the web application. 2) Users can give out the email address to collaborators who submit content via…
Noah Goodrich
  • 24,875
  • 14
  • 66
  • 96
0
votes
1 answer

Using main form as Parent to a new form created on different thread

I have a main form that runs a BackgroundWorker thread. While the worker is running I "freeze" the main form and wait for it to finish while showing its progress. In one on the scenarios the worker can display an OpenFileDialog for the user to…
Yoram
  • 179
  • 1
  • 2
  • 9
0
votes
1 answer

Exim - Limit sent mail bounce to the user

Exist some way of to limit sent mail bounce to the user with system filter of Exim MTA? I need set the header from of the mail bounces in a file, but not know like read it content. Thanks
Ismael Vacco
  • 1,010
  • 1
  • 10
  • 24
0
votes
1 answer

Is it possible to run XAMPP's fake sendmail MTA as a daemon and thus as a standalone MTA?

I want to send mails via XAMPP/PHP. Now I just found that the sendmail.exe delivered with XAMPP only seems to be a fake sendmail. I'm wondering if it can act as a full MTA, so can I run it as a daemon on 0.0.0.0:25 and send mails through…
JohnnyFromBF
  • 9,873
  • 10
  • 45
  • 59
0
votes
0 answers

How to make MTA:SA register pyautogui keystrokes

So, the only problem I have is MTA not registering key presses made by pyautogui, what's worse, it registeres when I'm not in any server, it stops working as soon as I join a server. I tried different methods than pyautogui but nothing works, I am…
MrBa
  • 1