Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
640 views

What are the limitations of a STA thread in compare to MTA threads?

If we make a thread STA like this: Thread.SetApartmentState(STA); then it cannot run code marked with [MTAThread] attribute. We have seen [STAThread] in windows and console applications but I have ...
7
votes
4answers
4k views

How do I set up my Ubuntu VPS to send outgoing mail?

My VPS provider (Slicehost) doesn't provide an SMTP server. I use Google Apps to send and receive mail for my domains, but I want to be able to programmatically send e-mail. I've been Googling this ...
5
votes
2answers
344 views

Threading issues in C# from external process

I have this simple code: public void Run() { var invokerThread = new Thread(new ThreadStart(RunOnBackground)); invokerThread.Start(); } private void RunOnBackground() { ...
3
votes
2answers
160 views

COM outbound call results in “An outgoing call cannot be made since the application is dispatching an input-synchronous call.”

I have a COM server (C++/STA (MFC based app)) and a COM client (C#/MTA). The COM server must live in an STA, since it's an MFC app (I have no choice in this matter). The client issues a call to the ...
3
votes
2answers
218 views

What exactly does an MTA?

This question got me thinking, and I now realize that I don't know nothing about the internals of MTAs. What exactly does an MTA? Everything after the SMTP protocol seems like dark magic to me. Lets ...
2
votes
1answer
222 views

MSTest setting Apartment Threading to MTA

I'm using MSTest in Visual Studio 2010 on a project that needs the apartment threading model set to MTA. I've looked online and the items I've found and tried seem to only work with Visual Studio ...
2
votes
5answers
147 views

What are All the Ways a Programmer Could use PHP to Send an Email?

I'm looking for a list of built in PHP functions that a programmer could use to send an email. The obvious answer here is mail(), but I'm also looking for a list of functions someone might use to ...
2
votes
2answers
445 views

QueueUserWorkItem with COM in C++

I have a performance issue where clients are creating hundreds of a particular kind of object "Foo" in my C++ application's DOM. Each Foo instance has its own asynchronous work queue with its own ...
1
vote
2answers
51 views

Microsoft's Aparment Analogy (STA, MTA): Need help understanding it

I've read lots about the Microsoft's threaded apartment model, but I'm still having a little trouble visualizing it. Microsoft uses the analogy of living things living in an apartment. So, for STA, ...
1
vote
0answers
68 views

How to specify default MTA?

i'm trying to use the MAILTO function in crontab on my mybookworld (it's a nas) I've installed a rather unfamiliar(in think) MTA: esmtp With mutt(console based email client) it works perfectly. But ...
1
vote
0answers
212 views

Do I still need a message pump in an STA thread that contains an STA COM object?

I am using a legacy STA COM object in a C# windows service that runs as an MTA thread. In order to use this COM object I created it in an STA thread which seems to work. Upon further investigation I ...
1
vote
3answers
283 views

Tiny, very-basic outgoing MTA?

I am looking for a very tiny Mail-Transfer-Agent (MTA) for my smaller VPS which only need to send emails for new accounts or notifications. Originally, I used PHP sockets and wrote a 4kb STMP class to ...
1
vote
1answer
449 views

Winforms: One COM object needs an STAThread, the other needs an MTAThread. How can I use them?

I'm trying to build a Winforms application with two COM components. However, one of the components only works when using [MTAThread] and the other only works with [STAThread]. What would the ...
1
vote
3answers
62 views

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 ...
1
vote
3answers
485 views

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 ...
1
vote
3answers
756 views

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 ...
1
vote
1answer
581 views

Running REST/WCF as STA instead of MTA for COM

Is it possible to configure a REST (WCF) service to run as STA instead of MTA? This is approach is needed in order to run legacy COM objects. In order to configure ASMX web services to run as STA ...
0
votes
1answer
16 views

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 ...
0
votes
1answer
13 views

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
0
votes
0answers
44 views

postfix: discarding all mails to a specific recipient address

How can I configure Postfix to silently discard (not bounce) all messages to a single, specific destination e-mail address, while still deliver all other mails? The mails in question are bounces ...
0
votes
1answer
48 views

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 ...
0
votes
0answers
15 views

Giving users of a web app their own email address?

Every once in awhile, I stumble upon a company (or web app, or somethingorother) that, in addition to service offering, also give you a brand spankin' new email address on their domain. Some companies ...
0
votes
1answer
93 views

sending email django with postfix (without an explicit postfix server)

I'd like to emulate the postfix sendmail command in Django where I don't need to explicitly start up a postfix server. For example if I simply enter the following on the command line: sendmail ...
0
votes
0answers
36 views

How do I configure “advanced” or “dynamic” email forwarding for my domain?

I bought a domain, and I'd like to to setup some "advanced" email forwarding. Let's say they send an email to something@mydomain.com. What I'd ideally like it to do is take and append it to my gmail ...
0
votes
2answers
122 views

Questions about COM multithreading and STA / MTA

Hi I am a beginner in COM. I want to test a COM dll in both STA and MTA modes. My first question is: is it possible a COM object supports both STA and MTA? Now I imagine the STA code snippet below: ...
0
votes
2answers
51 views

How and where does SSL signing apply to emails?

I am trying to find out how SSL signing of emails work and if it gets signed server side or MTA side? I know this is a bit vague maybe but any resources to read or documentation would help a lot :D ...
0
votes
5answers
227 views

MTA for receiving mails, in PHP

is there a library/class/code-snippet/etc. that allows me to directly receive mail in php? So that I don't have to run an additional sever in an other process and then have to somehow send the mails ...
0
votes
1answer
131 views

perl log parser for exim4 mta

im going to write log parser for exim4 MTA, and i have a couple of questions. (i know that there is an exilog program) Question: 1. what is better way to parse a line? (its abbout 5Gb of such lines ...
0
votes
1answer
80 views

Aspcompat in ASPX Page

In my aspx pages, I call a COM component that uses STA. So I use aspcompat=true parameter, but I want to understand the logic. What does it exactly do? As far as I know, in STA, it is assumed to be ...
0
votes
1answer
127 views

STA, MTA conflict warning Important?

I recently started writing a C++/CLI wrapper for a native c++ library. I'm now getting this compile warning "warning LNK4249: directive '/CLRTHREADATTRIBUTE:STA' conflicts with command line; ...
0
votes
1answer
181 views

Mail being sent to local domain instead of remote domain

I have a server which hosts mywebsite.com If I try to send mail to info@mywebsite.com, the MTA is trying to send it to a local host (the mail is managed on a different server). How can I fix this?! ...
0
votes
2answers
916 views

Is there a Python MTA (Mail transfer agent)

Just wondering if there is a Python MTA. I took a look at smtpd but they all look like forwarders without any functionality.
0
votes
2answers
526 views

Visual C++ GUI app stuck in MTA mode

I've got a C++ gui project exhibiting some strange behavior. On my machine, the code compiles and runs just fine. However, on another machine, The code compiles but ends up running in MTA somehow. ...
0
votes
3answers
749 views

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. ...
0
votes
4answers
442 views

How does Highrise handle e-mail addresses like: dropbox@123456.foobar.highrisehq.com?

I'm trying to generate custom e-mail addresses that get forwarded to a catch-all. I'm wondering how postfix would need to be configured to handle these types of e-mails ...