Non-Delivery of:RE: 4 Forte questions, sitting in arow

Hi Carl,
a. With regards to Forte "wrappering". Presumably the 'C' program that
you want to interface to, must have an API that you can access, and then
you call those functions from within Forte ?
If its a vanilla C program (you need the *.obj file) its quite straightforward.
You create a Forte project with an appropriately named class and method stubs
in an editor (not in Forte). This then gets imported into Forte and partitioned
as an external library. Forte then generates the appropriate C++ stubs, which
you compile with the appropriate C++ compiler. This will link the desired C
program into your Forte generated C++ stubs and all is well. If its a C++
program, typically they are DLL's, or if you don't have the *.obj file, you
have to jump through some (more) hoops as another user put it. Then you need to
write a C (not C++) program that calls the desired C++ DLL. And repeat as
above. So you then end up with 2 sets of stubs. Its quite cumbersome, but it
does work !
b. How does Forte support external, real-time, interrupt driven
applications ?
I'm not sure I uderstand the question - possibly the same as answer to d below.
c. Does Forte support 'Business Objects' datamining tool, and if not,
does it support any other data mining tool ?
As far as I know it does support Business Objects. At the interface level Forte
supports the C API or OLE2 automation (and next version (3) will support
Active-X as well) and most API's will give you one of those options.
d. Apparently Forte can interface to external applications using
messages, like it does internally between objects. How can it do this ?
Interfacing to external objects can done via three mechanisms :
1. CORBA. It uses the DEC ORB to interface fully to CORBA 2 compliant clients
(from Forte SO's) or servers (from Forte client partitions).
2. DCE. Similar to above
3. The ExternalConnection Class (Framework) is probably the easiest. We have
just received the documentation and it looks really good. Essentially you open
a TCP/IP pipe to another process on which you can both send and receive raw
data. You obviously need to design some higher level coding scheme, but it
looks very straightforward to implement and from what I know of TCP/IP pipes
its the best performing interface mechanism. In answer to your earlier
question, realtime external interrupts would probably work best with this. In
fact I know of implementations where they are busy doing exactly this with
continous datafeeds (and machine PLC control) via their own (!!) C-wrappered
Unix pipes interface.
Any insight would be appreciated,
- Carl
Carl Schei | Dexel (Pty) Ltd (Durban) |
Software Engineer | Tel : 27 31 2669273 |
email : [email protected] | Fax : 27 31 2660340 |
------ Message Header Follows ------
Received: from pebble.Sagesoln.com by notes.bsginc.com
(PostalUnion/SMTP(tm) v2.1.9c for Windows NT(tm))
id AA-1996Sep20.134600.1787.19161; Fri, 20 Sep 1996 13:46:02 -0500
Received: (from sync@localhost) by pebble.Sagesoln.com (8.6.10/8.6.9) id
JAA13740 for forte-users-outgoing; Fri, 20 Sep 1996 09:40:31 -0700
Received: (from uucp@localhost) by pebble.Sagesoln.com (8.6.10/8.6.9) id
JAA13734 for <[email protected]>; Fri, 20 Sep 1996 09:40:29 -0700
Received: from lin01.global.co.za(196.3.164.2) by pebble.sagesoln.com via smap
(V1.3)
id sma013732; Fri Sep 20 09:40:12 1996
Received: from anx_99.global.co.za (anx_99.global.co.za [196.3.168.109]) by
lin01.global.co.za (8.7.3/8.7.3) with SMTP id SAA14527; Fri, 20 Sep 1996
18:38:14 -0200 (GMT)
Received: by anx_99.global.co.za with Microsoft Mail
id <01BBA723.B4E4AD40@anx_99.global.co.za>; Fri, 20 Sep 1996 18:44:08 +-200
Message-ID: <01BBA723.B4E4AD40@anx_99.global.co.za>
From: Anton van Niekerk <[email protected]>
To: "'Dexel - Durban'" <[email protected]>
Cc: "'Forte user group'" <[email protected]>
Subject: RE: 4 Forte questions, sitting in a row
Date: Fri, 20 Sep 1996 18:39:50 +-200
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Sender: [email protected]
Precedence: bulk
Reply-To: [email protected]

-Your IP number is not blacklisted in the majr blacklist (doesn't mean this is true for all, but you should be OK=
-Your mail server is not an open relay, but is also not particularly well configured (nothing you can do about other than change provider).
This means, that it is close to impossible to tell you where the problem is from distance. I have never heard of your ISP so I cannot express any opinion.
If things are like you explained in points 1 and 2 of your post, chances are your ISPs mailserver has a very aggressive spamfilter generating false positives or has some other major configuration issue.
Do you have to authenticate to send mail?
Can you please reply to the testmail I sent you, so I can check it from my side.
Alex
P.S. Point 4 of your original post is part of life in the internet. Nothing you can do about. That's what spam filters are for.
P.P.S. All of this has nothing to do with Mac OS X Server so you are actually in the wrong place. Doesn't matter now as you'll have to have your provider sort this out anyway.

Similar Messages

  • RE: 4 Forte questions, sitting in a row

    Hi Carl,
    a. With regards to Forte "wrappering". Presumably the 'C' program that
    you want to interface to, must have an API that you can access, and then
    you call those functions from within Forte ?
    If its a vanilla C program (you need the *.obj file) its quite straightforward. You create a Forte project with an appropriately named class and method stubs in an editor (not in Forte). This then gets imported into Forte and partitioned as an external library. Forte then generates the appropriate C++ stubs, which you compile with the appropriate C++ compiler. This will link the desired C program into your Forte generated C++ stubs and all is well. If its a C++ program, typically they are DLL's, or if you don't have the *.obj file, you have to jump through some (more) hoops as another user put it. Then you need to write a C (not C++) program that calls the desired C++ DLL. And repeat as above. So you then end up with 2 sets of stubs. Its quite cumbersome, but it does work !
    b. How does Forte support external, real-time, interrupt driven
    applications ?
    I'm not sure I uderstand the question - possibly the same as answer to d below.
    c. Does Forte support 'Business Objects' datamining tool, and if not,
    does it support any other data mining tool ?
    As far as I know it does support Business Objects. At the interface level Forte supports the C API or OLE2 automation (and next version (3) will support Active-X as well) and most API's will give you one of those options.
    d. Apparently Forte can interface to external applications using
    messages, like it does internally between objects. How can it do this ?
    Interfacing to external objects can done via three mechanisms :
    1. CORBA. It uses the DEC ORB to interface fully to CORBA 2 compliant clients (from Forte SO's) or servers (from Forte client partitions).
    2. DCE. Similar to above
    3. The ExternalConnection Class (Framework) is probably the easiest. We have just received the documentation and it looks really good. Essentially you open a TCP/IP pipe to another process on which you can both send and receive raw data. You obviously need to design some higher level coding scheme, but it looks very straightforward to implement and from what I know of TCP/IP pipes its the best performing interface mechanism. In answer to your earlier question, realtime external interrupts would probably work best with this. In fact I know of implementations where they are busy doing exactly this with continous datafeeds (and machine PLC control) via their own (!!) C-wrappered Unix pipes interface.
    Any insight would be appreciated,
    - Carl
    Carl Schei | Dexel (Pty) Ltd (Durban) |
    Software Engineer | Tel : 27 31 2669273 |
    email : [email protected] | Fax : 27 31 2660340 |
    ----------------------------------------------------------------

    Do you have the side vibrate/ring switch fully engaged in one direction or the other?  If so, then it very well could be a hardware issue with the switch.  Visit to an Apple store genius bar would not be a bad idea to have it checked by the techs.

  • Change the SMTP 550 non delivery message

    Hi,
    I want to change the texte of the non delivery report (SMTP code 550)  send by the email appliance. 
    What is the simple way to do that ?
    Moreover, i would like to know how long the applicance will keep the message in queue in case of my internal email server will be out of order ?
    Where can i see/change this setting ?
    Thanks.

    You can set the 550 from the appliance, Mail Policies > Mail Flow Policies > Choose Policy Name.  From there, see the DHAP section:
    To answer the second part of your question...
    By default, mail is queued for 72 hours (259200 seconds) OR 100 retry attempts before it bounces to the original sender. 
    This setting is configurable from the command line (CLI): type bounceconfig and edit the default settings.  Also, you can modify this from the GUI interface by going to "Network > Bounce Profiles" and click on the Default profile.
    Also, the queue could fill up if there is too much mail. However, if the system reaches its storage limit, it will soft bounce further attempts by other mail servers to deliver more messages. This ensures that no messages will get lost, as these mail servers will reattempt message delivery as well until the ESA accepts messages again.
    Note: If you plan to shut down your internal mail server for maintenance for a longer period (more than a couple hours), best practice is to suspend the incoming listeners on your ESA as well (suspendlisteners). As mentioned before, in this case any connection attempts will be soft bounced, and retried later. This way, you leave the task of storing the messages to the sending mail server, which will prevent the mail queue on your email appliances filling up quickly. No messages will be lost however, once you got your internal mail server back into service, also resume the listeners on your ESA (resume), to allow delivery from remote hosts again.
    I hope this helps!
    -Robert
    (*If you have received the answer to your original question, and found this helpful/correct - please mark the question as answered, and be sure to leave a rating to reflect!)

  • FWD: Non-Delivery of:How to monitor who has what serviceobject connect

    Hello, I'm getting quite of few of these Non-Delivery messages. Is this
    someone trying to respond to my
    question on service object connection? How to fix the problem?

    Hello Peggy,
    I suggest that you make contact with Paolo Sidoli at DS Data (Italy). They
    have written a very nice package called DORE that includes trouble shooting
    utilities, that allow you to monitor what a remote user is doing (you can
    actually see their screen!).
    You can contact Paolo at [email protected]
    Best regards,
    Richard

  • First off, i think it's sad that i have to use my non apple device to post this question... Why has my iPad become absolutely useless after updating to iOS 8.1? I am unable to use my mini because it crashes, slow performance, major battery drain.

    First off, i think it's sad that i have to use my non apple device to post this question... Why has my iPad become absolutely useless after updating to iOS 8.1? I am unable to use my mini because it crashes, slow performance, major battery drain.

    Restore iPad to Factory Default; do not restore from backup. It may be the cause of the problem.
    Settings>General>Reset>Erase all content and settings

  • Non-delivery issue

    My mail server doesn't seem to send a user a non-delivery report if the user mis-addresses the email (such as mispelling or leaving off ".com" or some such.) Isn't the system supposed to tell you it can't deliver the mail? How can I repair this? I don't see a toggle in SA, and I'm not exacly sure of what to tag in main.cf. Any suggestions? Thanks....

    In my case, they must not be set. I searched through main.cf and could not find a line that read "delaywarningtime ="
    I thought it would have been a default value.
    Should I add those two lines with values to main.cf? Or do they go in master.cf? Do you need to see the output of postconf -n?
    To be clear, what I need is that if I send an email that is misaddessed, and doesn't go out, (or doesn't go out for any other reason) - then I get a message back from the mail server telling me that my message didn't go for whatever reason - that way I know I did it wrong or that it didn't make it.
    This happened to the boss two days ago, and he didn't understand why the guy had not replied. I found the message stuck (mailq) because it was misaddressed, and he was not happy he didn't get a warning.
    Thanks....

  • Non delivery ???

    I have been getting multi emails from a few colleagues as it appears they get  non delivery messages.   The mails are coming thro perfectly but the senders are not aware of this.
    These are incoming mails to a private address for my website  [email protected] on the Streamline.net server and the messages state they cannot connect to the domain  aeniorsgolf.org.uk  - please note the difference in spelling.
    My colleagues have checked the spelling at their end and even used the reply function on mails sent by myself.
     but it somehow changes by itself.
    I have checked everything at my end and have contracted Streamline.net support  who indicate that this must be at the senders end.   This happens on both my desktop and laptop and with OE6 and Thunderbird.   I have tried it myself sending a test mail from my BTinternet account to the seniorsgolf account and this non delivery message still arrives although all the mail comes through.
    Surely there must be some whizz kids or psychics on the forum who may have some idea.

    austinmorris wrote:
    I have been getting multi emails from a few colleagues as it appears they get  non delivery messages.   The mails are coming thro perfectly but the senders are not aware of this.
    These are incoming mails to a private address for my website  [email protected] on the Streamline.net server and the messages state they cannot connect to the domain  aeniorsgolf.org.uk  - please note the difference in spelling.
    My colleagues have checked the spelling at their end and even used the reply function on mails sent by myself.
     but it somehow changes by itself.
    I have checked everything at my end and have contracted Streamline.net support  who indicate that this must be at the senders end.   This happens on both my desktop and laptop and with OE6 and Thunderbird.   I have tried it myself sending a test mail from my BTinternet account to the seniorsgolf account and this non delivery message still arrives although all the mail comes through.
    Surely there must be some whizz kids or psychics on the forum who may have some idea.
    Hi.
    For your domain control panel, can you set forwarding of email addresses ? Since the "a" and "s" are so close together, this sounds like a typo on any forwarding setting.
    It won't matter what machine or mail client you are using.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • To get non delivery complete documents

    Hi All,
    Is there a view with tables VBAK, VBAP, VBUK & VBUP to take information for non delivery completed sales order items
    VBUK-LFSTK NE 'C'
    AND VBUP-LFSTA NE 'C'
    Pra
    Edited by: pradeep Ratnayake on Jul 31, 2008 3:20 PM
    Edited by: pradeep Ratnayake on Jul 31, 2008 3:20 PM
    Edited by: pradeep Ratnayake on Jul 31, 2008 3:21 PM

    Hi,
    You can write a simple ABAP qurey with these tables to get the details.
    Regards

  • Preventing non-delivery reports (NDR) being sent by mail server

    I need to stop my SL mail server from sending non-delivery reports for unknown local recipients.
    Does anyone know to do this? There is a lot of information on how to change the Postfix settings via numerous Google searches, but none of the configuration changes I make seem to prevent the delivery reports.
    Any help would be hugely appreciated

    Maybe. The NDR my machine sends out go to the sender and not back to me. So I never see them. No I cannot tell you how to turn them off. At best (worst?) that would make your server non-compliant with the SMTP standard, and I have no desire to turn off something that is not affecting me anyway.

  • I am an individual non professional Lightroom user. My question is if i buy the basic creative cloud package, can i use it in differnt device i.e. my computer or my laptop? e CLOUD PACKAGE

    I am an individual non professional Lightroom user. My question is if i buy the basic creative cloud package, can i use it in differnt device i.e. my computer or my laptop? or i need to buy to each device another license?

    Just wanted to add that two activation that is allowed can be on the same machine or different machines.
    Regards
    Rajshree

  • Non-delivery costs in TP/VS

    What is the logic behind maintaining Non-Delivery Costs in TP/VS Cost Profile? How should you calculate the amount of non-delivery cost? If we do not maintain Non-delivery cost, what are the implications and how it impacts the TPVS planning during optimiser run?

    Hi Sunil,
    Non-delivery costs specifies the costs fixed for the vendor as the penalty for the non-delivery of goods.  This can be equated to loss of sale that would happen if not sold or delivered on time. 
    For eg, in some scenarios, if there are sample orders to be executed, if those are not supplied on time, it leads to further cancellation of actual order etc.,
    These costs are not a real value, but a theoretical value taken into consideration by the Optimizer. You maintain the penalty costs per day, whereas the Optimizer calculates the penalty costs per time unit (seconds) (i.e. it does not round up to full days).
    The more important it is that a delivery takes place, the higher the costs you maintain here must be fixed in order to avoid non-delivery.
    These costs should be higher than the costs that arise through the transportation of the ordered goods. Otherwise the Optimizer decides that non-delivery is cheaper than delivery and does not generate a shipment. The costs that arise through transportation comprise earliness or delay costs, fixed costs, and the dimension costs (time, stop-offs, distance, quantity) of all means of transport.
    Regards
    R. Senthil Mareeswaran.

  • Non-Delivery of:forte-users-digest V1 #1073

    forte-users-digest Sunday, 20 September 1998 Volume 01 : Number 1073
    In this issue:
    RE: PrintDocument
    From: Joseph Mirwald <[email protected]>
    Date: Sun, 20 Sep 1998 18:41:13 +0200
    Subject: RE: PrintDocument
    Hi Peter,
    the workaround we get from support is to use a shareware tool named
    FinePrint www.singletrack.com.
    This tool works with prinitng more than one side through all printers
    because it's a printer driver itself. This solution is only a temporary
    solution for us. Some printers may work if their driver is updated to the
    newest available on the internet.
    The problem occurs only on Win95 with local printer! If the printer is
    on a NT-Server, the problem does not occur during print from 95.
    The problem is in a bug queue at forte with the state "waits on fix".
    Sorry for this bad message
    Joseph Mirwald
    At 18:38 18.09.98 +0800, you wrote:
    Hi,
    I work with Agnes.
    Yes. We run the program under Window 95 with a local printer. Did you=come
    up with any work-around?
    Regards,
    Peter Sham.
    -----Original Message-----
    From: Joseph Mirwald [SMTP:[email protected]]
    Sent: Friday, September 18, 1998 6:26 PM
    To: [email protected]
    Subject: Re: PrintDocument
    Hello Agnes,
    does this occur under Windows 95 prints direct to Printer?
    We have this problem under '95 with most of printers we use.
    Joseph Mirwald
    At 16:11 18.09.98 +0800, you wrote:
    When I tried to use the PrintDocument to print a document with 2pages
    (cloned userwindows),
    Forte always print an empty page 2 for me.
    I've used something like this
    ..... =09
    //Open Doc
    =09
    doc.SetWorkingPage(page =3D clonedWindow1);
    =20
    doc.PrintWorkingPage();
    =09
    doc.SetWorkingPage(page =3D clonedWindow2);
    doc.PrintWorkingPage();
    =09
    //Close Doc
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:http://pinehurst.sageit.com/listarchive/>

    forte-users-digest Sunday, 20 September 1998 Volume 01 : Number 1073
    In this issue:
    RE: PrintDocument
    From: Joseph Mirwald <[email protected]>
    Date: Sun, 20 Sep 1998 18:41:13 +0200
    Subject: RE: PrintDocument
    Hi Peter,
    the workaround we get from support is to use a shareware tool named
    FinePrint www.singletrack.com.
    This tool works with prinitng more than one side through all printers
    because it's a printer driver itself. This solution is only a temporary
    solution for us. Some printers may work if their driver is updated to the
    newest available on the internet.
    The problem occurs only on Win95 with local printer! If the printer is
    on a NT-Server, the problem does not occur during print from 95.
    The problem is in a bug queue at forte with the state "waits on fix".
    Sorry for this bad message
    Joseph Mirwald
    At 18:38 18.09.98 +0800, you wrote:
    Hi,
    I work with Agnes.
    Yes. We run the program under Window 95 with a local printer. Did you=come
    up with any work-around?
    Regards,
    Peter Sham.
    -----Original Message-----
    From: Joseph Mirwald [SMTP:[email protected]]
    Sent: Friday, September 18, 1998 6:26 PM
    To: [email protected]
    Subject: Re: PrintDocument
    Hello Agnes,
    does this occur under Windows 95 prints direct to Printer?
    We have this problem under '95 with most of printers we use.
    Joseph Mirwald
    At 16:11 18.09.98 +0800, you wrote:
    When I tried to use the PrintDocument to print a document with 2pages
    (cloned userwindows),
    Forte always print an empty page 2 for me.
    I've used something like this
    ..... =09
    //Open Doc
    =09
    doc.SetWorkingPage(page =3D clonedWindow1);
    =20
    doc.PrintWorkingPage();
    =09
    doc.SetWorkingPage(page =3D clonedWindow2);
    doc.PrintWorkingPage();
    =09
    //Close Doc
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:http://pinehurst.sageit.com/listarchive/>

  • Not being notified of bad email addresses or non delivery

    I recently changed my email to a mac account from a outlook address. I sent out a number of bulk notifications with 30+ addresses. I suspect that some of the email addressed are not good but I have not been notified of any failures due to bad addresses. As a test I sent an email with only 3 addresses, all bad, and all were returned.
    As such, I don't know if there a problem with bulk email not been sent or with return notifications.
    Please hep. Thanks

    Hi,
    Generally, when you send an email to an address that doesn't exist via OWA or Outlook, you will receive a NDR explaining that delivery has failed.
    Please disable the app temporarily and check the result. If the issue disappears, there is something wrong with the app code. Actually, we have a dedicated support team regarding the Microsoft Office for Developers. I recommend you ask your question on our
    Microsoft Office for Developers forum which is staffed by more experts specializing in this kind of problems. For your convenience:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev
    Thanks for your understanding.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • DW:101 Question - Site folder and file naming - best practices

    OK - My 1st post! I’m new to DW and fairly new to developing websites (have done a couple in FrontPage and a couple in SiteGrinder), Although not new at all to technical concepts building PCs, figuring out etc.
    For websites, I know I have a lot to learn and I'll do my best to look for answers, RTFM and all that before I post. I even purchased a few months of access to lynda.com for technical reference.
    So no more introduction. I did some research (and I kind of already knew) that for file names and folder names: no spaces, just dashes or underscores, don’t start with a number, keep the names short, so special characters.
    I’ve noticed in some of the example sites in the training I’m looking at that some folders start with an underscore and some don’t. And some start with a capital letter and some don’t.
    So the question is - what is the best practice for naming files – and especially folders. And that’s the best way to organize the files in the folders? For example, all the .css files in a folder called ‘css’ or ‘_css’.
    While I’m asking, are there any other things along the lines of just starting out I should be looking at? (If this is way to general a question, I understand).
    Thanks…
    \Dave
    www.beacondigitalvideo.com
    By the way I built this site from a template – (modified quite a bit) in 2004 with FrontPage. I know it needs a re-design but I have to say, we get about 80% of our video conversion business from this site.

    So the question is - what is the best practice for naming files – and especially folders. And that’s the best way to organize the files in the folders? For example, all the .css files in a folder called ‘css’ or ‘_css’.
    For me, best practice is always the nomenclature and structure that makes most sense to you, your way of thinking and your workflow.
    Logical and hierarchical always helps me.
    Beyond that:
    Some seem to use _css rather than css because (I guess) those file/folder names rise to the top in an alphabetical sort. Or perhaos they're used to that from a programming environment.
    Some use CamelCase, some use all lowercase or special_characters to separate words.
    Some work with CMSes or in team environments which have agreed schemes.

  • Rollover images question + site deffinition tool

    Hi, I took a course in Dreamweave but unfortunately lost my notes.  I am making a gallery site for myself and would like to have roll over images where one rolls over a thumbnail at the bottom of the page and a larger image in the middle changes to the thumbnailed one.  Prefferably without the larger image reverting back to whatever image 0 was.  If wome one could please explain the simpleset way to do this, or direct me to a really simple explination, I would be very greatful.
    Also I have a question about the site deffinition tool.  Is there a way to use it that does not involve creating an extra folder?  I already have defined folders for a site and I would like that to be just it.
    Thank you for your help.

    Pure CSS Disjointed Image Rollovers.
    http://alt-web.com/DEMOS/CSS-Disjointed-Image-Rollover.shtml
    When you define your Local Site, DW asks you which folder to use.  If you've already created one on your local drive, use that one.
    Nancy O.
    Alt-Web Design & Publishing
    Web : Print : Graphics : Media
    http://alt-web.com/
    Twitter: http://twitter.com/altweb
    Blog: http://alt-web.blogspot.com/

Maybe you are looking for

  • Running JavaScript in PDF files

    Is it possible doing JS in PDF files? Adobe Illustrator has a very old and tedious way of generating graphs. If I could just use JS, I could perhaps use gRaphaël - what y'all think? --Dwayne

  • 1st Apple product I have been disappointed in!

    I am having similar problems to others that have posted and more 1st sync seemed to go OK, but then several "TV Shows" just vanished the next time I tried to watch them the next day. I synced again..we will see. No way photos sync. It says I have "a

  • How to Get Rid of White Stripe At Top of Firefox Browser

    I have the current version of Firefox installed. Recently, perhaps with the most recent install, I'm not exactly sure, a white stripe appeared at the top of the browser, right under the search and URL boxes at the top of where websites would normally

  • Sorting slideshows by name

    Im new at this so please bear with me if this is a simple question. Im creating a menu with different submenus. Each submenu with multiple iphoto slideshows. When I go into each individual slideshow, I can see their names but I cannot sort it. I have

  • [SOLVED] Terminator stopped working Unable to start shell:/bin/bash

    Hello, I just wanted to share as I didn't found anything about it, Since yesterday I can't launch my favorite terminal emulator which is terminator, it gives me : Unable to start shell:/bin/bash displayed in terminator window where I'm supposed to ty